
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?