nichtwissend: Tabellenbreite und -höhe bei CSS

Beitrag lesen

Hallo,

ich wollte meine Seite um CSS erweitern. Leider bekomme ich das nicht hin. Ich finde hier auf selfhtml und im Forum auch, nicht das Passende. Wo liegt mein Fehler?

Das Beispiel in einer htlm-Datei speichern und mit dem Browser ansehen.

Wie bekomme ich mit CSS, die Zellen der Tabelle mit der Hintergrundfarbe voll gefühlt über die ganze Breite und Höhe, unabhängig von der Breite des Inhalts ?

Danke im voraus

Beispiel:

<font face="Ververdana" size="6">So soll es sein !!!!</font>
  <br>
  <br>
<table>
     <table border="0" width="100%" height="100px">

<colgroup>
      <col width="20%">
      <col width="80%">
      </colgroup>

<tr bgcolor="silver">
      <td><a href="http://yyyyyyyyyy/mw"> <img src="logo3.jpg"></a> </td>
      <td><font face="verdana" size="6"><center> heute Nacht </font></td>
      </tr>
    </table>

<table border="0" width="100%" height="30px">

<!--      <colgroup span="6" width="16.66%">/-->
      <colgroup>
      <col width="16.66%">
      <col width="16.66%">
      <col width="16.66%">
      <col width="16.66%">
      <col width="16.66%">
      <col width="16.66%">
      <colgroup>

<tr bgcolor="yellow">
      <td><font face="verdana" color="black"><center> ABC </font></td>
      <td><font face="verdana" color="black"><center> 123 </td>
      <td><font face="verdana" color="black"><center> DEF </td>
      <td><font face="verdana" color="black"><center> 456 </td>
      <td><font face="verdana" color="black"><center> GHI </td>
      <td><font face="verdana" color="green"><a href="http://yyyyyyyyyyy/mw/impressum.html"> <img src="impressum1.jpg"></a></td>
    </tr>
    </table>

<br>
    <br>
    <br>
    <br>

<Head>
<style type="text/css">
     <table style=table-layout:fixed; height:100px;>

<tr>

<td style="width:150px"><td>
        <td style="width:100%"><td>

<tr>
     </table>
    </style>

</head>

<body>

<font face="verdana" size="6" color="red">So soll es nicht sein !!!!!!!</font>
          <br>
          <br>
            <table>

<tr bgcolor="silver">
                  <td><a href="http://yyyyyyyyyy/mw"> <img src="logo3.jpg"></a> </td>
                  <td><font face="verdana" size="6"><center> heute Nacht</font></td>
                </tr>
            </table>

<table border="0" width="100%" height="30px">

<colgroup span="6" width="16.66%">

<tr bgcolor="yellow">
      <td><font face="verdana" color="black"><center> ABC </font></td>
      <td><font face="verdana" color="black"><center> 123 </td>
      <td><font face="verdana" color="black"><center> DEF </td>
      <td><font face="verdana" color="black"><center> 456 </td>
      <td><font face="verdana" color="black"><center> GHI </td>
      <td><font face="verdana" color="green"><a href="http://yyyyyyyyyyy/mw/impressum.html"> <img src="impressum1.jpg"></a></td>
    </tr>
    </table>