2

无论我尝试了什么,我网站上的顶部输入搜索都无法在 IE 中正确显示 - 我尝试了填充和行高,但它们仍然在顶部对齐。

这是CSS,任何想法都会很棒:

.search-bg {
background: #8A939A url("/images/top-input-bg.jpg") repeat;
border-radius: 15px;
display: block;
float: left;
height: 30px;
margin: 15px 10px 0 0;
width: 205px;
}

.search-bg input {
background-color: rgba(0, 0, 0, 0);
border: none;
float: left;
font-size: 14px;
height: 30px;
line-height: 15px;
padding: 0 0 0 15px;
width: 154px;
}

非常感谢。

4

1 回答 1

2

您需要将line-height输入中的值增加到 30

.search-bg input {
background-color: rgba(0, 0, 0, 0);
border: none;
float: left;
font-size: 14px;
height: 30px;
line-height: 30px; <--
padding: 0 0 0 15px;
width: 154px;
}
于 2013-05-09T20:54:38.927 回答