Moin,
was muss ich machen wenn ich auf gleicher Höhe etwas
sowohl rechts als auch links anordnen möchte?
Links = Text
Rechts = Button
Float scheidet aus, weil trotz clear, das Ganze
nie sauber funktioniert.
In einer Tabelle würde ich das so machen:
<table width="80%" border="1">
<tr>
<td align="left">irgendwas bla bla....</td>
<td align="right"><input type="button" value="test"></td>
</tr>
</tabel>
-----------------------------------
| blabla.... | ||button||
-----------------------------------
Aber in css bekomme ich das nicht sauber hin:
Mit sauber meine ich, keine wirre divitis gekoppelt mit
float. Position habe ich auch probiert, aber relative
macht gar nichts und absolute schießt übers ziel hinaus.
Aber es kann doch nicht so kompliziert sein, oder?
Tommy