Designer-Logo
Designer-Logo
Überschrift Beispiel Tag colgroup
<!DOCTYPE html>
<html>
<head>
<style>
table {
width: 60%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
color: black;
padding: 0.2rem;
}
</style>
</head>
<body>
<h3>Das colgroup-Element</h3>
<table>
<colgroup>
<col span="2" style="background-color:dodgerblue">
<col style="background-color:grey">
</colgroup>
<tr>
<th>ISBN</th>
<th>Titel</th>
<th>Preis</th>
</tr>
<tr>
<td>3476896</td>
<td>HTML für Dummys</td>
<td>39 CHF</td>
</tr>
<tr>
<td>5869207</td>
<td>CSS für Einsteiger</td>
<td>60 CHF</td>
</tr>
</table>
</body>
</html>
Überschrift BrowserAusgabe

Das colgroup-Element

ISBN Titel Preis
3476896 HTML für Dummys 39 CHF
5869207 CSS für Einsteiger 60 CHF