文本区域布局问题

发布于 2024-11-08 06:28:57 字数 878 浏览 0 评论 0 原文

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

我在文本区域前面有一个标签,它看起来像这样: screenshot

我实际上想要这样:

这是我的代码:

<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;

提前致谢

I got this small problem but I find it hard to explain so bear with me please.

I got a label in front of a textarea and it looks like this:
screenshot

And I actually would like this:

enter image description here

This is my code:

<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" />

The labels in css are: width:150px; text-align:right;

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飞烟轻若梦 2024-11-15 06:29:09
textarea { vertical-align: top; }
textarea { vertical-align: top; }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文