我已經建立this fiddle爲我做的一個例子。選擇選項字體大小
我所試圖做的Firefox中正常工作。當您打開選擇選項時,字體大小爲14px。
然而,在谷歌瀏覽器中查看它會選擇繼承的字體大小34px。
我理想的選擇是選擇字體大小14px。
這可能嗎?
我願意在任何jQuery的相關修復程序,應符合規定。
感謝
上市下面代碼......
我CSS是:
.styled-select {
overflow: hidden;
height: 74px;
float: left;
width: 365px;
margin-right: 10px;
background: url(http://i50.tinypic.com/9ldb8j.png) no-repeat right center #5c5c5c;
}
.styled-select select {
font-size: 34px;
border-radius: 0;
border: none;
background: transparent;
width: 380px;
overflow: hidden;
padding-top: 15px;
height: 70px;
text-indent: 10px;
color: #ffffff;
-webkit-appearance: none;
}
.styled-select option.service-small {
font-size: 14px;
padding: 5px;
background: #5c5c5c;
}
HTML標記:
<div class="styled-select">
<select class="service-area" name="service-area">
<option selected="selected" class="service-small">Service area?</option>
<option class="service-small">Volunteering</option>
<option class="service-small">Partnership & Support</option>
<option class="service-small">Business Services</option>
</select>
</div>
的可能的複製[?如何風格選擇標籤的選項元素(http://stackoverflow.com/questions/5887133/how-to -style-a-select-tags-option-element) – TylerH 2015-11-29 23:40:33