select[size=>1] does not render properly
Created by: rb-cohen
Similar to issue #209 (closed), a select box with a set size that is NOT a "multiselect" renders incorrectly, because select is given a set height of 27px.
<select size="2">
<option>One</option>
<option>Two</option>
</select>
What about using:
select[size]:not([size="1"]){
height: inherit;
}