搜索字段内的图像按钮?

发布于 2024-08-26 23:31:10 字数 83 浏览 5 评论 0原文

我想知道像 bing.com 或 Wolframalpha.com 这样的网站如何在文本字段内创建搜索按钮?如果你去每个网站,你就能清楚地明白我的意思。

I was wondering how websites like bing.com or wolframalpha.com create their search buttons inside of of the text field? If you go to each website, you can see clearly what I mean.

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

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

发布评论

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

评论(3

熟人话多 2024-09-02 23:31:10

让 Firebug 作为 Firefox 的插件。您可以单击屏幕上的元素并查看它们的 CSS。它将教您大量有关 CSS 的信息。他们实际上使用负边距来让这个傻瓜在 Bing.com 上浮动。

http://getfirebug.com/

Get yourself Firebug as a plugin for Firefox. You can click on elements on the screen and see their CSS. It'll teach you LOADS of info about CSS. They actually use a negative margin to get that sucker to float over on Bing.com.

http://getfirebug.com/

夜吻♂芭芘 2024-09-02 23:31:10

简单:提交按钮(具有透明背景)位于输入字段上方..:)

Simple: the submit button (with transparent background) is above the input field.. :)

别靠近我心 2024-09-02 23:31:10

这是代码,它在 Opera 中运行良好,但在其他浏览器中则不行。

submit_form {
    background:transparent url(submit.png) no-repeat;
    border:0 none;
    width:16px;
    height:16px;
    overflow:hidden;
    font-size:0px;
    text-decoration:none;
    cursor: pointer;
    margin-top: 0px;
    margin-left: -25px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 25px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}

Here's the code, it works fine in Opera, but no other browser.

submit_form {
    background:transparent url(submit.png) no-repeat;
    border:0 none;
    width:16px;
    height:16px;
    overflow:hidden;
    font-size:0px;
    text-decoration:none;
    cursor: pointer;
    margin-top: 0px;
    margin-left: -25px;
    margin-right: 0px;
    margin-bottom: 0px;
    padding-top: 25px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文