2011-05-20 111 views
2

我得到了这个小问题,但我觉得很难解释,请耐心等待。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;

在此先感谢

回答

5
textarea { vertical-align: top; } 
+0

啊哈!谢谢 – 2011-05-20 16:10:04