Definisi dan Penggunaan
The span atribut mendefinisikan jumlah kolom suatu <col>/<colgroup> elemen harus merentang.
Berlaku untuk
The span atribut dapat digunakan pada unsur-unsur berikut:
elemen | Atribut |
---|---|
<col> | span |
<colgroup> | span |
contoh
Col Contoh
Di sini, dua kolom pertama harus memiliki warna latar belakang merah:
<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>
Cobalah sendiri " Colgroup Contoh
Mengatur warna latar belakang dari dua kolom pertama menggunakan <colgroup> atribut rentang:
<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>
Cobalah sendiri " Dukungan Browser
The span
atribut memiliki dukungan browser berikut untuk setiap elemen:
Elemen | |||||
---|---|---|---|---|---|
col | iya nih | iya nih | iya nih | iya nih | iya nih |
colgroup | iya nih | iya nih | iya nih | iya nih | iya nih |