input元素垂直居中

chrome,firefox,safari, ie9+ 会根据高度自动居中文字;

IE9- 以下用这段代码垂直居中;

input[type="text"] {
    line-height: 36px9; // CSS Hack only for IE.
}
原文地址:https://www.cnblogs.com/3box/p/5386915.html