1,,关于 <input type="text"> <input type="button"> <input type="submit"> 的宽高
2,,有文字和<input />一起存在时候的居中
<div class="head">
你好, world <a href="#">show</a> <input type="text"
class="txt" /> <input type="submit" class="sub" value="s1" />
<input type="button" class="but" value="b2" />
</div>
.head{height:100px;background:#CCC;text-align:center;line-height:100px;}
.head input{vertical-align:middle;_margin:36px 0}
.head input.txt{100px;height:24px;background:#F00;border:1px solid #000;}
.head input.sub,.head input.but{40px;height:26px;background:#F00;border:1px solid #000;}
3,,有,文字,行内块级元素,<input /> 一起存在居中的时候
.head{height:100px;background:#CCC;text-align:center;line-height:100px;}
.head a{display:inline-block;40px;height:24px;line-height:24px;background:#F00;border:1px solid #000;vertical-align:middle;_margin:36px 0}
.head input{vertical-align:middle;_margin:36px 0}
.head input.txt{100px;height:24px;background:#F00;border:1px solid #000;}
.head input.sub,.head input.but{40px;height:26px;background:#F00;border:1px solid #000;}
4,,vertical-align:0;vertical-align:-5px;