我遇到了这个小问题,但我觉得很难解释,所以请耐心等待。
我在textarea前面有一个标签,它看起来像这样:
我真的很想这样:
这是我的代码:
<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> </label>
<input class="submit" id="btnZend" name="submit" type="submit" value="Verzend bericht" />
css中的标签是:width:150px; text-align:right;
提前致谢
答案 0 :(得分:5)
textarea { vertical-align: top; }