1

我为我的输入元素找到了一个不错的样式,但现在我想为我的选择元素创建一个看起来相似(或互补)的样式。

我希望熟悉 CSS 样式的人给我一个可以用于我的选择元素的类样式。

输入元素类:

input {
    background: 12px 11px no-repeat, -moz-linear-gradient(top, #f7f7f8 0%, #ffffff 100%);
    background: 12px 11px no-repeat, -webkit-linear-gradient(top, #f7f7f8 0%, #ffffff 100%);
    background: 12px 11px no-repeat, -o-linear-gradient(top, #f7f7f8 0%, #ffffff 100%);
    background: 12px 11px no-repeat, -ms-linear-gradient(top, #f7f7f8 0%, #ffffff 100%);
    margin: 5px 10px 5px 10px;
    background: 12px 11px no-repeat, linear-gradient(to bottom, #f7f7f8 0%, #ffffff 100%);
    border-radius: 3px;
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset, 0 -1px 0 rgba(0, 0, 0, 0.05) inset;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 13px;
    color: #222222;
    position: relative;
    height: 36px;
    width: 300px;
    padding-left: 10px;
}
input::-webkit-input-placeholder {
    color: #999999;
}
input:-moz-placeholder {
    color: #999999;
}
input:focus {
    box-shadow: 0 1px 0 #2392f3 inset, 0 -1px 0 #2392f3 inset, 1px 0 0 #2392f3 inset,     -1px 0 0 #2392f3 inset, 0 0 4px rgba(35, 146, 243, 0.5);
    outline: none;
    background: 12px 11px no-repeat, #ffffff;
}
4

1 回答 1

2

如果您想要与输入类似的样式,我建议您复制代码并将其也应用于select元素。当然,您可以修改代码以满足您的需求,这是您可以执行的基本示例:

演示

你只需改变:

input{}

..到..

select{}

这适用于CSS所有html select元素。

样式化select输入并不总是像样式化文本那样直接input例如我建议您通读这篇文章。


编辑:

在做了一些研究之后,我发现几乎不可能设置样式select options,因为它们是由操作系统而不是浏览器呈现的。

这是我可以select匹配你的最接近的input

演示

这是jQuery我最初建议的使用。我还强烈建议检查一些jQuery可以处理select输入样式的插件。

例如,我发现了这个:

http://gregfranko.com/jquery.selectBoxIt.js/#.UXpaF7XvuCk

看起来它可以很好地与您使用的样式配合使用。

于 2013-04-26T10:16:32.470 回答