表格为100%时CSS固定td大小

时间:2015-02-27 17:35:41

标签: html css html-table

如果我的表格宽度设置为100%,我可以制作固定的td尺寸吗?

这是我的CSS:

table{
margin-left:auto; 
margin-right:auto;
table-layout: fixed;
width:100%;
border:1px solid black;
}

td {
overflow: hidden;
width: 20px;
height: 20px;
white-space: nowrap;
}

如果我没有将表格设置为100%,则全部固定为20px x 20px,否则不会...

1 个答案:

答案 0 :(得分:0)

dispaly: inline-block;元素上应用td定义,现在您可以指定宽度和高度。 ;)

例如:

td {
    display: inline-block;
    width: 50px;
    height: 50px;
}