Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Styling Select in CSS

I'm trying to style my select objects in CSS like my inputs. This works: <input type="text" name="attr_name" /> input { border-color: #5D6D7E; background-color: rgba(0, 0, 0, 0.3); } This doesn't: <select name="attr_active">     <option value="0">Zero</option>     <option value="1">One</option> </select> select { border-color: #5D6D7E; background-color: rgba(0, 0, 0, 0.3); } What should the CSS say to style the select?
Figured out the issue, disregard!