I am agreed with Peter but by the use of:
select {
font-size: 20px;
font-family: 'Averia Libre', cursive;
}
on the css will change all of the dropdown font so he should use class instead of total select
CSS
.selectClass {
font-size: 25px;
font-family: 'Impact', cursive;
}?
And HTML
<link href='http://fonts.googleapis.com/css?family=Averia+Libre' rel='stylesheet' type='text/css'>
<select class="selectClass">
<option value="">I'm a custom font.</option>
<option value="">Hey me too!</option>
<option value="">Averia Libre</option>
</select>?
Or you may see the fiddle directly on
http://jsfiddle.net/sNkDW/
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…