我在 WordPress 网站中使用提交按钮。这是我的按钮 HTML:
<input class="greenbut" onclick="set_srch();" type="image" alt="Search" value="Search"/>
在style.css
我有:
.search_box .greenbut
{
width: 50px;
height: 19px;
text-align: center;
color: #333333;
line-height: 30px;
padding-top: 10px;
padding-right: 15px;
padding-bottom: 0px;
padding-left: 15px;
font-family: DroidSansRegular;
font-size: 13px;
margin-top: 31px;
margin-left: 0px !important;
float: left;
cursor: pointer;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
background-image: none;
background-attachment: scroll;
background-repeat: repeat;
background-position-x: 0px;
background-position-y: 0px;
background-size: auto;
background-origin: padding-box;
background-clip: border-box;
background-color: rgb(137, 206, 71);
}
在其他浏览器中没问题,但在 IE 中是这样的:
在 Chrome 和 Firefox 中,它看起来像这样:
我怎样才能为 IE 修复它?