css实现html文本框文字垂直居中效果

发布时间:2019-08-11编辑:脚本学堂
css控制html文本框实现文字垂直居中效果的方法,html文本框内容垂直居中显示的例子,感兴趣的朋友参考下。

在html文本框中定义了text的height 属性时,在text文本框中输入的文字都不是垂直居中的,可以用css控制让输入的文字垂直居中显示。

代码:
 

复制代码 代码示例:
<html>
<head>
<style type="text/css">
#text {
height:20px;
vertical-align:middle;
line-height:20px; /*line-height must be equal to height*/
}
</style>
</head>
<body>
<table>
<input type="text" id="text">
</table>
</body>
</html>

加入 verticla-align、line-height 两个属性后,文本框中的文字就在文本框中垂直居中了。
注意,line-height 必须要等于 height。

您可能感兴趣的文章: