Christoph Schnauß: Textarea ausrichten

Beitrag lesen

hallo,

ich schaffe es einfach nicht, eine textarea bottom auszurichten.
<div align="center">
<p align="center"><textarea name="Textbox" rows="10" cols="70">
   textextexttexttext
</textarea>
</p></div>

du kannst dir das <div> und das <p> völlig sparen und die gewünschte Formatierung/Positionierung mit CSS vornehmen. Ungefähr so:
<textarea name="Textbox" rows="10" cols="70" style="position:absolute; left:100px; bottom:200px;">
   textextexttexttext
</textarea>

Christoph S.