摘要:
/* 偶数行背景使用样式: */ table tr:nth-child(even){ background:cadetblue; } /* 奇数行背景使用样式: */ table tr:nth-child(odd){ background:darkslategray; } /* 偶数行背景使用样式: 阅读全文
摘要:
table{ table-layout:fixed; /* 只有定义了表格的布局算法为fixed,下面td的定义才能起作用。 */ } td{ white-space:nowrap;/* 文本不会换行,文本会在在同一行上继续,直到遇到 <br> 标签为止 */ overflow:hidden;/* 阅读全文