通过css控制html文本框中的文字垂直居中
2016-06-23来源:易贤网

当定义了 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 。

推荐信息