HTML-Col-Tag
- 24-07-2022
- Trung Minh
- 0 Comments
Das <col>-Tag gibt ein Attribut für jede Spalte in einem <colgroup>-Element an.
Das <col>-Tag ist besonders nützlich, um Stile auf ganze Spalten anzuwenden, anstatt jede Zelle und Zeile wiederholen zu müssen.
Verwendung des <col> .-Tags
Verwenden Sie beispielsweise das Tag <col>, um Spalten einzufärben.
<table> <colgroup> <col span="1" 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> <tr> <td>5869207</td> <td>My first CSS</td> <td>$49</td> </tr> </table>
Attribut des <col> .-Tags
Das <col>-Tag wird mit allen globalen Attributen in HTML bereitgestellt.