I'm having trouble with styling my select form to have a background-color and border. I've tried applying CSS properties, but it doesn't seem to be working as expected.
Here is the code snippet in question:
<select class="size">
<option>maat</option>
</select>
My CSS code looks like this:
select.size {
width: 170px;
border: 2px solid #dcd8d7;
border-radius: 4px;
background: #ffffff;
}