实例
html>
2019最新课程表table {
/* border: 1px solid #000; */
/* border-collapse: collapse; */
width: 800px;
margin: 2px auto;
border-spacing: 0;
/* box-shadow: 2px 2px 2px #888888; */
}
th,
td {
/* border: 1px solid #000; */
text-align: center;
padding: 10px;
border-left: 1px solid #000;
border-top: 1px solid #000;
}
th {
border-top: none;
}
table caption {
font-size: 1.3rem;
font-weight: bolder;
}
table thead>tr:first-of-type {
background: lightcoral;
}
table tbody>tr:first-of-type>td:first-of-type {
background: lightgreen;
}
table tbody>tr:nth-last-of-type(2)>td:first-of-type {
background: lightpink;
}
table tfoot>tr:last-of-type {
background: lightskyblue;
}
table th:first-of-type,
table td:first-of-type {
border-left: none;
}
table th:first-of-type {
border-radius: 10px 0 0 0;
}
table th:last-of-type {
border-radius: 0 10px 0 0;
}
table tr:last-of-type td:first-of-type {
border-radius: 0 0 0 10px;
}
table tr:last-of-type td:last-of-type {
border-radius: 0 0 10px 0;
}
课程表
星期星期一星期二星期三星期四星期五
上午8:00-11:30语文数学英语历史体育语文数学英语历史体育语文数学英语历史体育语文数学英语历史体育下午
8:00-11:30语文数学英语历史体育语文数学英语历史体育备注:打扫卫生后记得将扫帚归位!
运行实例 »
点击 "运行实例" 按钮查看在线实例