【发布时间】:2012-02-19 12:26:07
【问题描述】:
我有一个页面---链接现在被删除---
您可以在 FF 和 IE 中查看它(我有 IE 9)。在其中您可以看到右上角的搜索框有一个填充(左:32px 和右:72px)。填充在 FF 和 Chrome 中正常工作,但在 IE 中不正常。
可能的原因是什么。
搜索框代码-
<form action="">
<input type="text" name="search" id="search" />
<input type="submit" id="button" value="" />
</form>
CSS:
#search {
background:url(images/searchlens.jpg) no-repeat 0 0;
float:right;
width: 286px;
height:40px;
border:none;
padding-left: 32px;
padding-right:72px;
}
【问题讨论】:
标签: html css internet-explorer textbox padding