gpt4 book ai didi

css - 设置输入框背景

转载 作者:技术小花猫 更新时间:2023-10-29 11:09:10 26 4
gpt4 key购买 nike

我必须创建一个具有以下背景的输入框

enter image description here

到目前为止,在我的代码中,我有下面的代码,但它没有显示 -> 执行此操作的正确程序是什么?

我还必须制作此按钮的几个变体,它们如下:

  • 按钮深色区域上的十字 - 我正打算使用 <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;
}

最佳答案

Fiddled :

<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 .

关于css - 设置输入框背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10843966/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com