ความหมายและการใช้งาน
span แอตทริบิวต์กำหนดจำนวนคอลัมน์ที่ <col>/<colgroup> องค์ประกอบควรครอบคลุม
นำไปใช้กับ
span แอตทริบิวต์ที่สามารถใช้กับองค์ประกอบต่อไปนี้:
องค์ประกอบ | คุณลักษณะ |
---|---|
<col> | span |
<colgroup> | span |
ตัวอย่าง
ตัวอย่าง Col
ที่นี่สองคอลัมน์แรกควรจะมีสีพื้นหลังสีแดง:
<table>
<colgroup>
<col span="2" style="background-color:red">
<col style="background-color:yellow">
</colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
</table>
ลองตัวเอง» Colgroup ตัวอย่าง
กำหนดสีพื้นหลังของทั้งสองคอลัมน์แรกที่ใช้ <colgroup> ช่วงแอตทริบิวต์:
<table>
<colgroup span="2" style="background:red"></colgroup>
<tr>
<th>ISBN</th>
<th>Title</th>
<th>Price</th>
</tr>
<tr>
<td>3476896</td>
<td>My first HTML</td>
<td>$53</td>
</tr>
<tr>
<td>5869207</td>
<td>My first CSS</td>
<td>$49</td>
</tr>
</table>
ลองตัวเอง» สนับสนุนเบราว์เซอร์
span
แอตทริบิวต์มีการสนับสนุนเบราว์เซอร์ต่อไปนี้สำหรับแต่ละองค์ประกอบ:
ธาตุ | |||||
---|---|---|---|---|---|
col | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
colgroup | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |