Textarea布局问题

时间:2011-05-20 16:04:00

标签: html css forms textarea

我遇到了这个小问题,但我觉得很难解释,所以请耐心等待。

我在textarea前面有一个标签,它看起来像这样: screenshot

我真的很想这样:

enter image description here

这是我的代码:

<form method="post" action="" name="myform" id="form">
<label>Naam :</label>
<input type="text" id="naam" name="naam" size="40" />
<br />
<label>Email :</label>
<input type="text" id="email" name="email" size="40" />
<br />
<label>Bericht :</label>
<textarea cols="30" rows="7" id="bericht" name="bericht"></textarea>
<br />
<label>&nbsp;</label>
<input class="submit" id="btnZend" name="submit" type="submit" value="Verzend bericht" />

css中的标签是:width:150px; text-align:right;

提前致谢

1 个答案:

答案 0 :(得分:5)

textarea { vertical-align: top; }