使用 CSS 标记字段集中的文本对齐方式

发布于 2024-07-08 19:00:41 字数 454 浏览 7 评论 0原文

在我的字段集中,我的文本框旁边(侧面)有标签,但由于某种原因,它们位于顶部而不是中间。 这是我的字段集 CS​​S:

fieldset {
  clear: both;
  font-size: 100%;
  border-color: #000000;
  border-width: 1px 0 0 0;
  border-style: solid none none none;
  padding: 10px;
  margin: 0 0 0 0;
}

label 
{
    font: bold 12px Verdana, Arial, Helvetica, sans-serif, MS UI Gothic;
    float: left;
    width: 12em;
    text-align:right;
    vertical-align:text-bottom;
}

我缺少什么?

In my fieldset I have labels next (side) to my textboxes, but for some reason, they are towards the top and not middle. Here is my CSS for the fieldset:

fieldset {
  clear: both;
  font-size: 100%;
  border-color: #000000;
  border-width: 1px 0 0 0;
  border-style: solid none none none;
  padding: 10px;
  margin: 0 0 0 0;
}

label 
{
    font: bold 12px Verdana, Arial, Helvetica, sans-serif, MS UI Gothic;
    float: left;
    width: 12em;
    text-align:right;
    vertical-align:text-bottom;
}

What am I missing?

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

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

发布评论

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

评论(2

浅浅淡淡 2024-07-15 19:00:41

尝试调整标签元素的 line-height 属性。 您可能需要增加或减少它。

Try adjusting the line-height property for the label element. You may need to increase or decrease it.

梦在深巷 2024-07-15 19:00:41

对我来说,这是 css 最令人沮丧的事情......
扎克是对的,它可能需要对行高进行一些调整,有时很多调整(例如20px)。 我认为浮动元素会导致行高变得困难?
如果你想让它位于行的中间,你应该设置vertical-align:middle; 也。

希望这可以帮助...

To me this is the most frustrating thing about css...
Zack is right it will probably take some tweaking with the line-height, sometimes lots of tweaking (like 20px). i think that floating the element causes line height to be difficult??
if you want it in the middle of the line you should set vertical-align:middle; too.

hope this helps...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文