abstrait:<!DOCTYPE html><html><head> <title>a鏈接</title> <style type="text/css"> /*表格*/ /**{margin: 0px;padding: 0px;}*/ table{border: 1px solid #ccc;border-coll
<!DOCTYPE html>
<html>
<head>
<title>a鏈接</title>
<style type="text/css">
/*表格*/
/**{margin: 0px;padding: 0px;}*/
table{border: 1px solid #ccc;border-collapse: collapse;}
tr th{height: 100px;width: 45px;border: 1px solid #ccc;}
tr td{height: 100px;width: 45px;border: 1px solid #ccc;}
</style>
</head>
<body>
<!-- 表格 -->
<table>
<tr>
<th>表頭1</th>
<th>表頭2</th>
<th>表頭3</th>
<th>表頭4</th>
<th>表頭5</th>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td rowspan="2">5</td>
</tr>
<tr>
<td colspan="4">1</td>
</tr>
</table>
</body>
</html>
Professeur correcteur:西門大官人Temps de correction:2019-04-22 10:35:40
Résumé du professeur:最好上傳一下程序的運(yùn)行效果圖。rowspan colspan的作用是什么?