gpt4 book ai didi

html - 使链接粘在文本字段上

转载 作者:行者123 更新时间:2023-11-28 15:00:40 25 4
gpt4 key购买 nike

大家好,我正在为我的社区做一个新的布局,现在我要把他分成几 block 。他们只有 1 个问题,我设计了一个用户可以搜索的文本字段,但在文本字段之后有 2 个链接。我不知道如何让他们粘在一起。我已经尝试过一些东西,它实际上适用于谷歌浏览器,但它没有。

.searchbox {
background: url('../images/searchbox.gif') no-repeat;
border: 0px;
height: 24px;
width: 308px;
font-size: 11px;
padding: 1px -15px 0px 10px;
}
.options {
background: url('../images/options_active.gif') repeat-x;
background: url('../images/options.gif') repeat-x;
font-size: 10px;
padding: 6px;
margin: 0 0 0 -10px;
color: #6b6b6b;
}
.options:active {
background: url('../images/options_active.gif') repeat-x;
color: #000;
}
.button {
background: url('../images/button_bg_active.gif') repeat-x;
background: url('../images/button_bg.gif') repeat-x;
color: #fff;
font-weight: bold;
font-size: 11px;
padding: 5px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
}
.button:active {
background: url('../images/button_bg_active.gif') repeat-x;
}

这是我的css文件中的内容

这是我的 html 文件:

<div id="topbar">
<form method="post" action="">
<input type="text" class="searchbox" name="searchbox" value="Zoek events, nieuws, dj's, foto's en veel meer..." />
<a href="#showOptions" class="options" title="Advanced options">Advanced options</a>
<a href="#submitform" class="button" title="Zoeken!">Zoeken!</a>
</form>
</div>

这是它在 Firefox 中的样子: alt text http://img411.imageshack.us/img411/8282/searchj.png

这是它在 chrome 中的样子: alt text http://img22.imageshack.us/img22/2655/searchchrome.png

最佳答案

首先,您可能还想使用 -webkit-border-top-left-radius: 5px-webkit-border-bottom-left-radius: 5px 在 Chrome 和 Safari 中获得同样的效果。

我会做类似下面的事情:

.form {
position: relative; /* Alows you to absolutely position child elements */
}

.searchbox {
float: left;
position: absolute;
}
.options, .button {
float: right;
position: absolute;
}
.options {
right: -30px; /* Width of the button to its right */
}

关于html - 使链接粘在文本字段上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2356481/

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