使链接粘贴到文本字段

时间:2010-03-01 14:37:32

标签: html css xhtml

嘿伙计们,我正在为我的社区制作新的布局,现在我正在将他切成碎片。他们只有一个问题我设计了一个用户可以搜索的文本域,但文本字段后面有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

1 个答案:

答案 0 :(得分:0)

首先,您可能还希望使用-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 */
}