在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。