我有一个带有占位符文本的输入字段,但无法使其垂直居中对齐。它可以在Chrome中正常工作,但不能在IE 11中工作。
以下是我目前的情况,
tmpFile="$(mktemp)"
awk '{ $1 = $2 }1' file > "$tmpFile" && mv "$tmpFile" file
rm -f "$tmpFile"
我尝试了input:-ms-input-placeholder {
color: red;
height: 36px;
line-height: 36px;
background-color: red;
}
,但没有帮助
答案 0 :(得分:2)
put line-height:normal;对于所有输入。这将需要正常的行高。