我有一个表格,可以按我的意愿显示,但是我在下面添加了一个按钮,以便用户可以展开并显示辅助表格。但是,第二个表格的显示不像第一个表格,我想知道为什么。第二个表格显示在左侧,框之间没有预期的间距
第一个表(正确显示)
<div id="expenses-table">
<table class="table">
<tr>
<th>Date</th>
<th>Supplier</th>
<th>Amount</th>
<th>Reason</th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
</table>
<br>
<br>
出现问题的第二个表的显示与第一个表不同
.table,
tr {
border: 1px solid black;
width: 80%;
margin-left: auto;
margin-right: auto;
border-radius: 5px;
}
<table id="expand" style="display:none" class="table">
<tr>
<th>Date</th>
<th>Supplier</th>
<th>Amount</th>
<th>Reason</th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
<tr>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
<th><input type="text"></th>
</tr>
</table>
</table>
</div>
<button id="expand-btn" class="button" onClick="expandTable()">Expand</button>
2条答案
按热度按时间evrscar21#
由于你没有回应评论或进一步发展你的问题,要求(这是完全相反的,你被要求做什么时问)。我试着猜测你的最终目标,并提出以下内容。
th
标记更改为td
,除了for标题 *wrrgggsh2#
如果需要将一个表 Package 在另一个表中,则需要执行以下操作(将a嵌套< table >在标记中< table >):
另外,CSS不能很好的控制表格单元格,当内容很长的时候,表格会自行扩展,像这样:
因此,< div >< table >如果您确实需要控制样式,请使用而不是。