我必须创建一个具有以下背景的输入框
到目前为止,在我的代码中,我有下面的代码并且没有显示 - >这样做的正确程序是什么?
我还要生成这个按钮的几个变体,它们如下:
按钮暗区的十字架 - 我只是要使用带有类的<span>
标签并将图形设置为 - &gt;这会是一个好方法吗?
左侧曲线后面的回形针图标 - &gt;我打算像上面那样做 - &gt;这会是一个好方法吗?
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;
}
答案 0 :(得分:9)
<div class="input-container">
<input type="text" value="aaaaaaaaaaaaaaaaaa"/>
</div>
.input-container {
background: url(http://i.stack.imgur.com/0Vlc5.png) no-repeat;
width:197px;
height:28px;
}
.input-container input{
height:28px;
line-height:28px;/*results in nice text vertical alignment*/
border:none;
background:transparent;
padding:0 10px;/*don't start input text directly from the edge*/
width:148px;/*full width - grey on the side - 2*10px padding*/
}
如果您计划以不同的宽度重复使用它,则应该查找sliding doors technique。
答案 1 :(得分:0)
如果您愿意,我已为您的表单创建了新代码,然后继续将其应用于您的HTML代码
您可以执行此操作
HTML代码
<form action="#" method="get">
<label for="recipients">TO: </label>
<input type="search" name="recipients" id="recipients" placeholder="Recipients Names">
<input type="submit" value="">
</form>
Css代码
label{
float:left;
margin:25px 0 0 0px;
padding:0;
}
input[type="search"], input[type="submit"]{
margin:20px 0 0 0px;
padding:0;
line-height:28px;
height:28px;
background: url("http://i.stack.imgur.com/0Vlc5.png") no-repeat 0 0;
border: 0 none;
float:left;
}
input[type="search"]{
width:152px;
padding-left:15px;
}
input[type="submit"]{
background-position:-167px 0;
width: 30px;
cursor:pointer;
}
现场演示链接http://jsfiddle.net/AL6vb/4/
现在根据您的布局更改为代码,这只是演示.......