abstract:<!DOCTYPE html><html><head> <title>表格</title> <style type="text/css"> table{ border: 1px solid #ccc; border-collapse: collapse;} tr th{height:20px;border:
<!DOCTYPE html>
<html>
<head>
<title>表格</title>
<style type="text/css">
table{ border: 1px solid #ccc; border-collapse: collapse;}
tr th{height:20px;border:1px solid #ccc;width:100px;}
tr td{height:20px;border:1px solid #ccc;width:100px;}
</style>
</head>
<body>
<table>
<tr><th colspan="5">做业</th></tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>0</td>
</tr>
</body>
</html>
Correcting teacher:韦小宝Correction time:2019-03-12 15:58:04
Teacher's summary:写的很不错 HTML中这些标签都是很基础的标签页是很常用的标签 课后没事多去练习练习 没有什么复杂的逻辑 多写几遍基本上就可以记住了