之前也写过在《input文本框里面插入小图片》但是那方法过于繁琐复杂,这次纯粹使用CSS来实现可以很好的兼容各种浏览器。
如果:
css样式部分:
[code]input.search{
border: 1px solid rgb(165, 165, 167); width: 250px; height: 31px; background-image:url(sear_ico.png); background-repeat: no-repeat; line-height: 31px; padding-left: 26px;
}
input.submit {
margin-left:2px;
background:url(sear_buttom.png) no-repeat;
border: 0;
width: 86px;
height: 31px;
cursor: pointer;
}[/code]
html部分:
[code]<input type=”text” class=”search” maxlength=”180″ />
<input type=”submit” class=”submit” name=”submit” id=”searchsubmit” value=” “>[/code]
input搜索文本框中添加插入小图片源文件下载