gpt4 book ai didi

css - 根据 div 大小对齐表格

转载 作者:太空宇宙 更新时间:2023-11-03 20:42:08 25 4
gpt4 key购买 nike

我在 div 中有表格,如果我改变窗口大小,表格就会从 div 中出来。请帮我。提前致谢。下面是我的代码

<div style="height:auto">
<table width="100%" style="width: 100%;">
<thead>
<tr >
<th width="16.5%">sunday</th>
<th width="16.5%">monday</th>
<th width="16.5%">tuesday</th>
<th width="16.5%">wed</th>
<th width="16.5%">thu</th>
<th width="16.5%">fri</th>
</tr>
</thead>
<tbody>
<tr >
<td>111</td>
<td ><input value="" type="" name="" /></td>
<td ><input value="" type="" name="" /></td>
<td ><input value="" type="" name="" /></td>
<td ><input value="" type="" name="" /></td>
<td ><input value="" type="" name="" /></td>
</tr>
</tbody>
</table>
</div>

最佳答案

在你的代码中添加以下css

div{
width: 500px; /* you can apply any width to this div */
}

table{
table-layout:fixed;
border-spacing: 0;
border-collapse: separate;
}
table td{
padding: 5px;
}

input{
width: 100%;
box-sizing: border-box;
}

检查这个Demo

关于css - 根据 div 大小对齐表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24798634/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com