Hi
für alle die schon immer mal die Design-Tabellen um die Formulare wegbekommen wollte, das ganze aber doch bündig halten wollte, hier eine kleine Anleitung. mit ein bisserl CSS alles kein problem.
vorher
------
<table>
<tr>
<td>Vorname</td>
<td><input type="text" name="vorname"></td>
<tr>
<tr>
<td>Nachname</td>
<td><input type="text" name="nachname"></td>
<tr>
</table>
nachher
-------
<style type="text/css">
.formcont
{
align: left;
width: 250px;
clear: both;
}
.inpucont
{
float: right;
}
</style>
<div class="formcont"><input type="text" class="inpucont" name="vorname">Vorname</div>
<div class="formcont"><input type="text" class="inpucont" name="nachname">Nachname</div>
nur mal so als ansatz :)
so long
ole
(8-)>
Vegetables? Yes,...for example garlic!