首页 > 代码库 > 文本框文字垂直居中 CSS

文本框文字垂直居中 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>