Richie: tabellen

Hallo,

Ich habe mir eine tabelle mit einem hintergrundbild erstellt.
Das funktioniert auch soweit nur stellt er mir jetzt jede Zeile vertikal zentriert dar?

Gibt es einen Befehl mit dem ich das verhindern kann??

mfg Richie

form.htm:

<html>
<head>
<title>--- 4 BDH ---</title>
<link rel="stylesheet" type="text/css" href="navi.css">
</head>
<form method="post" action="form.htm">
<body bgcolor="fafaf9">
<table id="bild" cellpadding="4" id="bild">
<tr><td>Zeile 1</td></tr>
<tr><td>Zeile 2</td></tr>
<tr><td>Zeile 3</td></tr>
</table>
</body>
</form>
</html>

navi.css:
#bild {
 background-image: url(Feld_Navigation.gif);
 width:145px;
 height:280px;
}

so schaut der code aus falls es euch interessiert..

  1. Gibt es einen Befehl mit dem ich das verhindern kann??

    vertical-align:top;

    <table id="bild" cellpadding="4" id="bild">

    wozu vergibst du die id 2 mal?

    lg gerhard

    1. aja übersehen..

  2. Hallo Richie!

    <form method="post" action="form.htm">
    <body bgcolor="fafaf9">

    </body>
    </form>

    Achte mal auf sauber sortiertes Markup.

    Schönen Gruß

    Afra