使用 CSS3 我正在尝试显示带有玻璃图像的搜索框。我基本上是通过在文本框上放置图像并设置其left-margin
. 我的代码在这里:
<body>
<form id="header-search">
<input type="text" class="searchbox" /><input type="submit" class="button" value="" />
</form>
</body>
#header-search{overflow:auto;}
#header-search input.searchbox
{
border-bottom-left-radius:5px;
-webkit-border-bottom-left-radius:5px;
-moz-border-bottom-left-radius:5px;
border-top-left-radius:5px;
-webkit-top-left-radius:5px;
-moz-left-radius:5px;
border:1px solid #8e8e8e;
background-color:white;
height:16px;
padding:4px;
padding-left:28px;
padding-right:10px;
color:#4a4a4a;
float:left;
}
#header-search input.button{
border:0px dashed red;
padding:0;
margin:0 0 0 -185px;
width:24px;
height:24px;
background:transparent url(../images/SearchImage.png) center center no-repeat;
float:left;
}
更新
- 我没有使用 em 而不是 px
- 我尝试过不同的css重置。
- 请参阅图片了解详细差异。
- 我已经在没有其他代码行的新 css/html 文件中完成了这段代码。