 PHPz
PHPz批改状态:合格
老师批语:代码附上运行效果图
 
            
        <table></table><caption></caption><thead></thead><tbody></tbody><tfoot><th></th><tr></tr><td></td>注:
属性名:colspan,默认会往右侧合并
注意:当前单元格同行右侧的<td>,需要删除否则会被挤出去。
例如:colspan=3,则需要删除右侧的3个<td>,
属性名:rowspan,默认会往下方进行合并
注意:当前单元格下行的<td>需要删除
例如:rowspan=3,当前行下方的3个<tr>中都需要删除一个<td>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>课程表</title>
<style>
th{
background-color: lightgrey;
}
td{
text-align: center;
}
.time{
background-color: lightblue;
}
tfoot:nth-of-type(1){
background-color: lightgrey;
}
</style>
</head>
<body>
<table border="1px" cellspacing="0px" cellpadding="0px" width="400px">
<caption style="margin-bottom: 5px;"><strong>课程表</strong></caption>
<thead>
<tr>
<th>时间</th>
<th>周一</th>
<th>周二</th>
<th>周三</th>
<th>周四</th>
<th>周五</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="4" class="time">上午</td>
<td>数学</td>
<td>语文</td>
<td>英语</td>
<td>体育</td>
<td>数学</td>
</tr>
<tr>
<td>数学</td>
<td>语文</td>
<td>英语</td>
<td>体育</td>
<td>数学</td>
</tr>
<tr>
<td>数学</td>
<td>语文</td>
<td>英语</td>
<td>体育</td>
<td>数学</td>
</tr>
<tr>
<td>数学</td>
<td>语文</td>
<td>英语</td>
<td>体育</td>
<td>数学</td>
</tr>
</tbody>
<tr>
<td colspan="6">
中午休息
</td>
</tr>
<tbody>
<tr>
<td rowspan="3" class="time">下午</td>
<td>数学</td>
<td>语文</td>
<td>英语</td>
<td>体育</td>
<td>数学</td>
</tr>
<tr>
<td>数学</td>
<td>语文</td>
<td>英语</td>
<td>体育</td>
<td>数学</td>
</tr>
<tr>
<td>数学</td>
<td>语文</td>
<td>英语</td>
<td>体育</td>
<td>数学</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>备注</td>
<td colspan="5">每天下午15:30-17:30在校写完作业才能回家</td>
</tr>
</tfoot>
</table>
</body>
</html>
 
                 
                        
                    Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号