【发布时间】:2021-01-20 22:13:02
【问题描述】:
我正在尝试使我的表格具有响应性,但我有一个 Marge。我把表格设置为响应式,但即使这样它也不起作用。
我在另一个页面上做了同样的事情,它可以工作。不适合这个,奇怪!
<Container className='dataContainer' fluid>
<Row>
<Col>
<h3>Base de données client</h3>
</Col>
</Row>
<Row >
<Table class="table-responsive" striped hover>
<thead>
<tr>
<th>Nom</th>
<th>Prenom</th>
<th>Mail</th>
<th>Numero</th>
<th>Age</th>
</tr>
</thead>
<tbody>
{this.display()}
</tbody>
</Table>
</Row>
</Container>
【问题讨论】:
标签: javascript css reactjs