首页 > 编程知识 正文

html如何设置表格背景颜色,html中表格背景色怎么设置

时间:2023-05-06 05:52:41 阅读:227306 作者:3524

fddfk/p>

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;

}

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。