我有一个html表,看起来像这样:
<table>
<thead>
<tr>
<th >title1</th>
<th >title2</th>
<th >title3</th>
<th >title4</th>
<th >title5</th>
<th >title6</th>
<th >title7</th>
</tr>
</thead>
<tbody>
<tr>
<td>data1</td>
...
<td>data7</td>
</tr>
</tbody>
我遇到的问题是我只有大约300px来放入所有这些信息,我想知道是否有某种方式我可以告诉表分裂,如果它达到300px限制的结束。这有可能吗?或者我会回到使用div?