使用 IE 8,我的搜索表单无法正确显示。输入字段太低。在 Firefox、Chrome 和 Safari 中,一切正常。
这是我的 HTML:
<form class="search" role="search" method="get" id="searchform" action="<?php echo home_url( '/' ); ?>">
<input type="text" placeholder="Suchen..." name="s" id="s" />
<input type="submit" id="searchsubmit" value="Start" />
</form>
这是我的 CSS:
.search {
background: #F3F4F3;
padding: 10px;
width: auto;
color: #666;
font-size: 11px;
line-height: 1.3em;
padding-top: 10px;
margin-bottom: 20px;
margin-top: 0px;
}
input {
color:#fff;
border:1px solid #B3B5B3;
background:transparent;
outline:none;
height:21px;
padding:0;
margin: 0;
padding: 0px 8px;
font-family: $std-sans-font;
}
input[type="text"] {
color: #515b57;
}
:-moz-placeholder {
color:#515b57;
}
::-webkit-input-placeholder {
color:#515b57;
}
input:focus {
font-style: normal;
@include single-box-shadow(rgba(255,255,255,0.5), 0px, 0px, 6px);
}
form {
display:inline-block;
}
input[type="submit"] {
background:#B3B5B3;
height:23px;
border:0;
&:hover, &:focus {
@include single-box-shadow(rgba(255,255,255,0.5), 0px, 0px, 6px);
}
}
也许,填充有问题?