搜索框内的搜索按钮,如 Bing

发布于 2024-09-15 21:41:36 字数 106 浏览 5 评论 0原文

如何在搜索框中实现搜索按钮(如 Bing 等网站上所示)?

带有按钮图形的搜索框

How can I implement a search button inside the search box, as seen on a site like Bing?

search box with graphic for button

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

过去的过去 2024-09-22 21:41:36

它看起来像是在里面,但事实并非如此(你不能将 html 放在输入中)。

这 2 个元素(一个输入和一个按钮)靠得很近,边距为 0,并且高度相同。该按钮的图形有 3 像素的白边距。所以就造成了这样的效果。

可能的标记和样式可以是:

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


#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;

   /* placing next to input using float or absolute positioning omitted ... */
}

It just looks like it's inside but it's not (you cannot put html inside an input).

The 2 elements (an input and a button) are close together with 0 margin and both have the same height. The button's graphic has a 3px white margin. So it creates this effect.

A possible markup and styling could be:

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


#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;

   /* placing next to input using float or absolute positioning omitted ... */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文