I was wondering if there is a way to make the dropdown box background colour disappear. So far I have the actual first part, were it says "lease Select Type Of Skis" that part is transparent. But when they click on the down arrow, the background colour of the options is grey. I want it to be nothing there.
I was also wondering how to get rid of the blue around the option when the arrow is clicked, so there is no blue what so ever.
HTML:
<select name="cars" class="select" id="name" autocomplete="off" placeholder="Type of ski" > <option value="" disabled selected hidden>Please Select Type Of Skis. . . . . . .</option> <option value="0">a</option> <option value="1">b</option> </select> CSS:
body { background-image: url(http://iliketowastemytime.com/sites/default/files/imagecache/blog_image/hd-wallpaper-winter-mountains-scene.jpg); background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; color: white; font: 16px/26px "Raleway", sans-serif; text-align: center; } select { font: 16px/26px "Raleway", sans-serif; background: transparent; color: white; border: 0; } select option { margin: 40px; color: Red; border: 0; background-color: transparent; -webkit-appearance: none; } Fiddle link: Link