So ich hab versucht mit hilfe der Stylesheets meine Tabellen zu formatieren aber irgendwie hab ich da Probleme.
Meine .htm datei:
_________________________________________________________________
<html>
<head><link rel="stylesheet" type="text/css" href="sample.css">
<title>table-layout</title>
</head>
<body>
<h1>hallo</h1>
<table border>
<colgroup span="3" style=""></colgroup>
<tr>
<td style="width:100px">123456789012345678901234567890123456789012345678901234567890</td>
<td style="width:200px">123456789012345678901234567890123456789012345678901234567890</td>
<td style="width:300px">123456789012345678901234567890123456789012345678901234567890</td>
</tr>
</table>
</body></html>
__________________________________________________________________
Meine Sample.css Datai
__________________________________________________________________
table border {table-layout:fixed;}
__________________________________________________________________
Es handelt sich hier um eine Übung aus Self html ich will halt die Tabellenzellen gefixt bekommen wie mache ich das? bzw Was hab ich hier falsch gemahct?