BERCAMILAN

Buku catatan untuk tag HTML

  1. Beranda
  2. Tag HTML Catatan
  3. Fungsi dari tag col pada HTML

Fungsi dari tag col pada HTML

Keterangan

Tag col merupakan tag yang digunakan untuk mengatur salah satu kolom tabel.

Contoh

<style>
    .border, .border td {
        border: 1px solid black;
    }
</style>

<table class='border'>
    <colgroup>
        <col style='background-color: lightgreen'>
        <col>
        <col style='background-color: lightblue'>
    </colgroup>

    <tr>
        <td>Satu</td>
        <td>Dua</td>
        <td>Tiga</td>
    </tr>
    <tr>
        <td>Empat</td>
        <td>Lima</td>
        <td>Enam</td>
    </tr>
</table>

Hasil

SatuDuaTiga
EmpatLimaEnam



Halaman Terhubung

Tag HTML - colgroupTag HTML - styleTag HTML - tableTag HTML - tdTag HTML - trProperti CSS - background-colorProperti CSS - border

Terima kasih telah mengunjungi