gpt4 book ai didi

html - 搜索框内的搜索按钮

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

我想在搜索框内实现一个搜索按钮,我发现它很有用:Search button inside the search box like Bing

但是当我将代码放入我的站点时,它没有按预期方式显示,这是怎么回事?

这是代码

HTML

<input type="text" id="q" />
<input type="button" id="b" value="Search" />

CSS

#q, #b { 
margin: 0
}
#q {
padding 5px;
font-size: 2em;
line-height: 30px
}
#b {
/* image replacement */
text-indent: -99999px;
width: 30px;
height: 30px;
display: block;
background: gray url(button.png) 0 0 no-repeat;
}

code

最佳答案

试试这个

#q, #b { 
margin: 0
display:inline-block;
float:left;
}
#q {
padding 5px;
font-size: 2em;
line-height: 30px;
border:none;
}
#b {
/* image replacement */
margin-top:8px;
width: 30px;
height: 30px;
background: gray url(button.png) 0 0 no-repeat;
}
.border {
border:#ccc solid 1px;
width:390px;
}
.clear {
clear:both;
}

<div class="border">
<input type="text" id="q" />
<input type="button" id="b" value="Search" />
<div class="clear"></div>
</div>

Check this out

关于html - 搜索框内的搜索按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18973353/

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