我有一个表单,其提交输入按钮有一个背景图像,并在输入字段的顶部左移:
这适用于所有当前浏览器。我的问题是它还需要在Windows XP(!)上的IE8中工作,但事实并非如此。将鼠标悬停在输入(放大镜)上时,指针不会更改,并且按钮不可单击。有什么想法,我出错了吗?
HTML:
<form id="" action="" method="post">
<label for="search">Search</label>
<input type="text" id="search" name="search" value="" />
<input type="submit" name="searchsub" class="searchsub" value="" />
</form>
CSS:
#search {
width:222px;
height:36px;
padding-left:223px;
padding-right:10px;
float:left;
}
input.searchsub {
width:23px;
height:23px;
float:left;
background-image:url(../images/magnifier.jpg);
margin:8px 0 0 -32px;
border:0;
cursor:pointer;
}
答案 0 :(得分:2)
这是一个开始:(演示:http://jsfiddle.net/KYL3A/)
我删除了你的浮动并添加了一个div作为“边界包装”。我认为这将使IE8发挥:)虽然我无法自己测试,因为我没有IE8
<form id="" action="" method="post">
<div id="searchwrap">
<label for="search">Search</label>
<input type="text" id="search" name="search" value="" />
<input type="submit" name="searchsub" class="searchsub" value="" />
</div>
</form>
CSS
#searchwrap {
display: inline-block;
border: 1px solid #333;
padding: 0 10px;
}
#search {
width:150px;
height:36px;
border:0;
}
input.searchsub {
width:23px;
height:23px;
background:red url(); // added red as i dont have your image
margin:8px 0 0 0px;
cursor:pointer;
}
答案 1 :(得分:-1)