18 lines
299 B
HTML
18 lines
299 B
HTML
<!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>
|