CSS:带有提交按钮样式的输入字段

时间:2012-08-11 06:48:38

标签: css

我目前正在使用一个输入字段来搜索我的页面。但我正在经历一些CSS风格问题。我在输入字段内放置了提交按钮,这是放大镜的图像。问题是按钮不能通过跨浏览器保持原位。它在Firefox中看起来不错,但其他浏览器看起来很糟糕。

如何让提交按钮始终保持在输入字段内? EXAMPLE

谢谢你!

与对象相关的CSS

<style>
.search-input {
    padding: 0 5px 0 22px;
    border: 2px solid #DADADA;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
    border-radius: 25px;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;

    background: #FFF; /* old browsers */

}

.search-input li {
list-style: none outside none;
}


.search-submit {
    width: 13px;
    height: 13px;
    border: none;
    background: url(http://webprolearner2346.zxq.net/css-test2/images/mag-glass.png) no-repeat;
    display: block;
    position: absolute;
     right: 170px;
    text-indent: -9999em;
    top: 60px;
}

.search{
    float: right;
    margin-right: 30px;
    margin-top: 35px;
}
</style>

HTML

<div id="header">
<div class="search"><input type="text" class="search-input" name="search" value="Search"/><input type="submit" class="search-submit" /></div>
</div>

1 个答案:

答案 0 :(得分:3)

使用我遇到的这种更好的方法。它运行良好并使用Web开发人员工具进行测试。干杯@ !!!

<强> HTML

<div id="header">
    <form id="search">
        <input id="searchField" type="text" />
        <input id="searchSubmit" type="submit" value="" />
    </form>
</div>

<强> CSS

#search{
    float: right;
    margin-right: 30px;
    margin-top: 35px;
}


#searchField{
    border: 1px solid #FFEDE8;
    float: left;
    height: 20px;
    padding-right: 25px;
    width: 140px;}


#searchSubmit{
    background: url("http://webprolearner2346.zxq.net/css-test2/images/mag-glass.png") no-repeat scroll 0 0 transparent;
    border: medium none;
    cursor: pointer;
    height: 20px;
    margin-left: -22px;
    margin-top: 5px;
    width: 20px;
}