我正在尝试摆脱默认选择以使用更符合我网站风格的内容。
我创建了一个<button>
来包装选择。给它不透明度:0和绝对定位和大小调整使其适合按钮。我使用了一些jquery,使得活动选项在<span>
中也显示为按钮的文本。它看起来很不错。
问题是在chrome和safari上运行完美,在firefox上反而没有!
webkit听取选择的点击,即使它不可见,moz也不要(对IE和歌剧非常好奇)。我真的不知道如何解决这个问题......
这里有一个复制问题的小提琴: http://jsfiddle.net/bakaburg1/YyvRf/2/
欢迎任何帮助。
答案 0 :(得分:0)
您可以使用<div>
代替<button>
HTML:
<div class="btn btn-small select-container">
<select>
<option>title</option>
<option>date</option>
<option>author</option>
</select>
</div>
CSS:
.btn.btn-small{
padding-bottom: 2px;
padding-top: 2px;
color: #737373;
font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
font-size: 14px !important;
font-variant: small-caps;
font-weight: bold;
}
.btn.select-container {
position: relative;
padding-right: 24px;
}
.btn.select-container select {
position: absolute;
top: -1px;
left: 0;
height: 117%;
width: 100%;
opacity: 0;
filter: alpha(opacity=0);
z-index: 1000;
}
select.btn {
width: initial;
height: 23px;
padding-right: 20px;
-webkit-appearance: none;
}
select.btn:focus {
outline: none;
}
.select-container {
position: relative;
}
请在此处查看:http://jsfiddle.net/YyvRf/3/