My code:
Why is the first <select>
element not inheriting the font-family
property from the specification for <body>
?
If I have to change the font for a <select>
why do I have to copy the style?
If you use:
select {
font-family: inherit;
}
It'll work fine. CSS is a little quirky when it comes to form controls.