遇到个问题,关于 html 中同时设置 table 元素的 table-layout: fixed; 和 width: 100%;的问题:
实际结果如下: 如果 .container { width: 600px }, 那么
我的疑问是:
有什么资料可以提供查阅吗?我现在只知道会有这样的效果,但是不知道为什么,找了挺久资料也没找到,有了解的大佬可以跟我指个路我去看看?
<style>
.container {
width: 600px;
}
table {
table-layout: fixed;
width: 100%; // 这里切换是否设置宽度
}
</style>
<div class="container">
<table class="table">
<col style="width: 30px">
<col style="width: 90px">
<col style="width: 200px">
<col style="width: 200px">
<col style="width: 600px">
<col style="width: 300px">
<col style="width: 500px">
<thead class="thead">
<tr>
<th>
#
</th>
<th>
姓名
</th>
<th>
年龄
</th>
<th>
职业
</th>
<th>
住址
</th>
<th>
兴趣爱好
</th>
<th>
其他
</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.