當你自己定義了 Text 的 height 屬性時,在 Text 中輸入的文字都不是垂直居中的瘦赫,不過你可以添加CSS來控制它,讓輸入的文字垂直居中谋右,使網(wǎng)頁更完美
<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>
<div>
<input type="text" id="text">
</div>
</body>
</html>
加入 verticla-align灶泵、line-height 兩個屬性后育八,文本框中的文字就在文本框中垂直居中了,要注意的是 line-height 必須要等于 height