文本框文字垂直居中 CSS

时间:2014-08-18 20:12:42   收藏:0   阅读:324
<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>

文本框文字垂直居中 CSS,布布扣,bubuko.com

原文:http://www.cnblogs.com/njl041x/p/3920188.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!