设置高度后,FireFox 3.5 上的 HTML 输入中的文本保留在顶部

发布于 2024-09-25 04:54:41 字数 252 浏览 2 评论 0原文

我们的表单需要更大的文本输入,非常简单,我们只需设置它们的高度...但是 Firefox 3.5 将文本保留在顶部。如何使其垂直居中?在 Firefox 3.6、IE8、Chrome 和 Safari 上,文本如我所愿垂直居中。

<form>
  <input type="text" style="height: 50px"/>
</form>

如何使该表单中的文本在其输入框中居中?

We need bigger text inputs for our forms, so easy enough, we just set the height on them... But Firefox 3.5 then keeps the text at the top. How do I vertically center it? On Firefox 3.6, IE8, Chrome and Safari, the text is vertically centered as I hoped.

<form>
  <input type="text" style="height: 50px"/>
</form>

How do I make the text in this form centered in its input box?

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

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

发布评论

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

评论(1

心意如水 2024-10-02 04:54:41

使用padding代替...

input[type=text] {
   padding: 25px 0; /* experiment with padding */
}

使用line-height hack...
(仅适用于单行输入,不适用于文本区域)

input[type=text] {
   line-height: 50px;
   height: 50px;
}

Use padding instead...

input[type=text] {
   padding: 25px 0; /* experiment with padding */
}

or

Use the line-height hack...
(only works with single line inputs, not textareas)

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