如何让input text 在div中垂直居中

如题所述

设置行高和div的高度一样。如:div的高度是20px,那行高也设置成20px
温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2016-10-04
<style>
#searchDiv{
    height:30px;
    line-height:30px;
    background:#69C;
}
  .d1{margin-top:4px;}
</style>
 
        <div id="searchDiv">
                <input class="d1" type="text" name="searchText" id="searchIpt" />
            <div>搜索</div>
        </div>

第2个回答  推荐于2016-08-11
设置行高和div的高度一样。如:div的高度是20px,那行高也设置成20px本回答被提问者和网友采纳
第3个回答  2014-02-15
直接给你地址,你自己看吧
http://www.lanrentuku.com/js/css-782.html
相似回答