在html的table怎样控制每个td中的文字,在单元格中与两边的距离?
在html的table怎样控制每个td中的文字,在单元格中与两边的距离?
.table-css{
white-space: nowrap;
border-collapse:collapse;
}
我的table属性有,nowrap。所以没法设置td的宽度。
如果我不设置nowrap,td长度又不起作用,因为table在div中是 overflow: auto;
我试了各种方法搞不定啊!!!
------解决方案--------------------.table-css tr td{
height : 30px;
border-style:solid;
border-width:1px;
border-color:#E1E6EB;
padding:0px 17px;
}
注意 padding:0px 17px;