600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > html添加表格背景颜色代码 html – 设置表格行的背景颜色

html添加表格背景颜色代码 html – 设置表格行的背景颜色

时间:2019-08-01 14:21:04

相关推荐

html添加表格背景颜色代码 html – 设置表格行的背景颜色

border-collapse:collapse添加到表中

The border-collapse CSS property determines whether a table’s borders

are separated or collapsed. In the separated model, adjacent cells

each have their own distinct borders. In the collapsed model, adjacent

table cells share borders.

The separated model is the traditional HTML table border model.

Adjacent cells each have their own distinct borders. The distance

between them given by the border-spacing property.

In the collapsed border model, adjacent table cells share borders. In

that model, the border-style value of inset behaves like groove, and

outset behaves like ridge.

table {

width: 100%;

border-collapse:collapse;

}

tr:nth-child(even) {

background: peachpuff;

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。