celldata rowspan和colspan是 這些屬性應放置在 以下是在 HTML 中合併表格單元格的語法 - 現在讓我們來看一個範例,其中一列的行跨度設為 2。 以下是上述範例程式的輸出 下面給出了一個在 HTML 中合併表格列單元格的範例。 以下是上述範例程式的輸出。 下面是另一個範例,透過在單一程式中設定 rowspan 和 colspan 屬性的值來合併行和列 以下是上述範例程式的輸出。 以上是HTML中的表格rowspan和colspan是什麼意思?的詳細內容。更多資訊請關注PHP中文網其他相關文章!HTML中的表格rowspan和colspan是什麼意思?
標籤的屬性。這些用於指定儲存格應合併的行數或列數。 rowspan 屬性用於合併行,colspan 屬性用於合併 HTML 中表格的列。
標記內,如下圖所示 -#
文法
<td rowspan="2">cell data</td>
<td colspan="2">cell data</td>
範例 1 - 設定行跨度
<!DOCTYPE html>
<html>
<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">
<style>
table,
tr,
th,
td {
border: 1px solid black;
padding: 20px;
}
</style>
</head>
<body>
<h2>Tables in HTML</h2>
<table style="width: 100%">
<tr>
<th>First Name </th>
<th>Job role</th>
</tr>
<tr>
<td></td>
<td rowspan="2"></td>
</tr>
<tr>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>
範例 2 - 設定colspan
<!DOCTYPE html>
<html>
<style>
table,tr,th,td {
border:1px solid black;
padding: 20px;
}
</style>
<body>
<h2>Tables in HTML</h2>
<table style="width: 100%">
<tr>
<th >First Name </th>
<th>Job role</th>
</tr>
<tr>
<td colspan="2" ></td>
</tr>
<tr>
<td ></td>
<td></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>
</body>
</html>
範例 3
<html>
<head>
<style>
table, th, td {
border: 1px solid black;
width: 100px;
height: 50px;
}
</style>
</head>
<body>
<h1>Heading</h1>
<table>
<tr>
<td colspan="2" ></td>
</tr>
<tr>
<td ></td>
<td></td>
</tr>
<tr>
<td colspan="2"></td>
</tr>
</table>
</body>
</html>