gpt4 book ai didi

html - 搜索框中搜索文本和搜索按钮之间的边框

转载 作者:太空宇宙 更新时间:2023-11-04 14:39:26 27 4
gpt4 key购买 nike

demo

html

<div class="search">
<input type="text" value="search..." />
<input type="image" value="Q" />
</div>

CSS

.search{
width: 400px;
background-color: gray;
border-radius: 12px;
padding: 20px;
}
.search input:first-child{
width: 300px;
}
.search input:nth-child(2){
width: 50px;
height: 20px;
overflow: hidden;
background-color: #fff;
float: right;
text-align: center;

}
.search:after{
content: " ";
border-right: 4px solid red;
margin-left: 20px;
}

我无法在输入标签中插入 :after 元素,因为它不会工作,因为它没有结束标签。所以我在 .search 的主 div 中管理它。边框显示准确,但我想要这样

enter image description here

最佳答案

添加样式

border-top: 20px solid #FF0000;
border-bottom: 20px solid #FF0000;

.search:after

DEMO

关于html - 搜索框中搜索文本和搜索按钮之间的边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18483460/

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