我是 HTML 和 CSS 的新手,我在水平扩展时遇到了问题,而我希望它垂直扩展。我已经固定了 Th 的宽度,但它没有解决任何问题。这是我的代码。
<div id="resBox">
<table id="resTable">
<tr>
<th class="frame">a</th>
<th class="frame">b</th>
<th class="frame">c</th>
<th class="frame">d</th>
<th class="frame">e</th>
</tr>
</table>
</div>
每当一个 th 包含一个长字符串时,它都会花费使其他帧更小。
这是CSS代码:
#resTable{
width:100%;
margin:auto;}
.frame{
width:19%;
border: 1px solid black;}
谢谢。