blob: fb464395d5d7e71e6dbc08dedd991af961ba4fbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<style>
@font-face {
font-family: "Ahem";
src: url(../../fonts/Ahem.ttf);
}
select {
-moz-appearance: none;
border: none;
font: 20px/1 Ahem;
box-sizing: content-box;
height: 40px;
padding: 0;
}
</style>
<select>
<option>X</option>
</select>
|