模板:沙盒/styles.css
来自戏曲百科
< 模板:沙盒
body {
filter: invert(1) hue-rotate(270deg);
}
table {
width: 100%;
text-align: center;
border-spacing: 0;/**设置相邻单元格的边框间的距离**/
border-collapse: collapse;/**边框会合并为一个单一的边框**/
color:#5a5a5a;
table-layout: fixed;/**固定table表格**/
}
table thead {
background-color: #d9edf7;
}
table td,table th{
border:1px solid #ccc;
overflow: hidden;/**溢出隐藏**/
white-space: nowrap;/**不换行**/
text-overflow: ellipsis;/**溢出不可见部分使用...代替**/
}