标签:浏览器 失效 assets 隐藏 you inf ext 注意事项 border
table-layout:auto
是表格布局中的默认值,采用浏览器自动表格布局算法,但是缺点会很明显
td
指定的width
不一定生效,td
的width
会自动调整text-overflow: ellipsis
也会失效,同样,img
会撑大td
举个例子:
<table>
<tr>
<td>31</td>
<td>32ssssssssssssss</td>
</tr>
<tr>
<td>31</td>
<td>
<img src="assets/tiger.png" alt="">
</td>
</tr>
</table>
table {
display : table;
width : 200px;
height : 200px;
border-collapse : collapse;
table-layout : auto;
}
td {
overflow : hidden;
width : 100px;
height : 100px;
border : 1px solid black;
text-overflow : ellipsis;
}
这样的结果就是这样的:
td
的 width
和 img
都没有溢出隐藏,反而撑大了td
,但是如果把 table-layout
改为 fixed
,效果如图:
td
的text-overflow : ellipsis
和overflow : hidden
都会起作用,但是这里也有几个地方要注意:
text-overflow : ellipsis
生效的前提是overflow
不为visible
,最好是类似hidden
的值table
的width
td
的宽度加起来超过table
的width
,即使给table
加上overflow:hidden
,td
也不会被隐藏。标签:浏览器 失效 assets 隐藏 you inf ext 注意事项 border
原文地址:https://www.cnblogs.com/xianshenglu/p/9001737.html