admin 管理员组

文章数量: 1184232


2024年3月9日发(作者: nstruction)

CSS样式代码部分:

/* Border styles */

#table-2 thead, #table-2 tr {

border-top-width: 1px;

border-top-style: solid;

border-top-color: rgb(230, 189, 189);

}

#table-2 {

border-bottom-width: 1px;

border-bottom-style: solid;

border-bottom-color: rgb(230, 189, 189);

}

/* Padding and font style */

#table-2 td, #table-2 th {

padding: 5px 10px;

font-size: 12px;

font-family: Verdana;

color: rgb(177, 106, 104);

}

/* Alternating background colors */

#table-2 tr:nth-child(even) {

background: rgb(238, 211, 210)

}

#table-2 tr:nth-child(odd) {

background: #FFF

}

第三种:

CSS样式代码部分:


本文标签: 部分 样式 代码