我必须创建一个具有以下背景的输入框
到目前为止,在我的代码中,我有下面的代码并且它没有显示 -> 这样做的正确程序是什么?
我还必须制作这个按钮的几个变体,它们如下:
按钮黑色区域上的十字 - 我只是要使用
<span>
带有类的标签并将图形设置为 -> 这是一个好方法吗?左侧曲线后面的回形针图标 -> 我打算和上面一样 -> 这是一个好方法吗?
HTML:
<div class="innerTo">
<form action="#" method="get">
<label for="recipients">TO: </label>
<input type="search" name="recipients" id="recipients" placeholder="Recipients Names">
</form>
</div>
CSS:
.innerBar .innerTo{
width:200px;
padding:5px 0 0 15px;
display:block;
float:left;
}
.innerBar .innerTo label{
margin:0 15px 0 0;
font-size:14px;
font-weight:bold;
color:#666666;
}
.innerBar .innerTo input[type=search] {
color: red;
}
.innerBar .recipients{
background-image:url('../images/searchBGpng.png') no-repeat;
width:192px;
height:27px;
}