设置高度后,FireFox 3.5 上的 HTML 输入中的文本保留在顶部
我们的表单需要更大的文本输入,非常简单,我们只需设置它们的高度...但是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
padding
代替...或
使用
line-height
hack...(仅适用于单行输入,不适用于文本区域)
Use
padding
instead...or
Use the
line-height
hack...(only works with single line inputs, not
textarea
s)