I need to style a <select>
element so that it appears like plain text until clicked, revealing the pulldown choices. Ideally, I would like to include small arrows to indicate multiple options, but I can add those as image overlays if necessary.
My problem lies with customizing this element using CSS:
#FromPopup {
background: none; <--
border: none; <-----
margin-left: 8px;
position: relative;
cursor: pointer;
height: 5px;
margin-top: -10px;
}
While this code successfully removes the background and border, the default pulldown button still shows up, resembling the Win Classic style.
Is there a way to hide the background and border of the pulldown button?
I am specifically targeting Mozilla platforms in this case only. Thank you!