我的桌子应缩小所有图像以适应表格的单元格。我使用代码
/* Table Size */
.table-major {
table-layout: fixed;
display: block;
max-width: 1080px;
}
/* Basic style */
.tbst th,
.tbst td {
padding: 12px 3px !important;
text-align: center !important;
vertical-align: middle !important;
border: 1px solid #ccc !important;
font-size: 12px;
overflow: hidden !important;
line-height: 24px !important;
}
/* Table head + footer colored */
.tbst thead th,
.tbst tfoot th {
background-color: black;
color: #fff;
}
/* Image table fit cell */
.tbst img {
vertical-align: middle;
width: 100%;
}
这在Firefox,Safari,Chrome中没有任何问题,但在IE中,图像不适合单元格大小。
解决方法是什么?