I've been working on creating a customized select tag with an inline SVG background using -webkit-appearance: none in my CSS.
For reference, here is the JSFiddle link: http://jsfiddle.net/sucrenoir/yHR53/5/
select {
font-size: 30px;
border: 1px solid lightblue;
border-radius: 10px;
color: black;
padding: 12px;
width: 300px;
-webkit-appearance: none;
background:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='50px' height='50px'><polyline points='46.139,15.518 25.166,36.49 4.193,15.519'/></svg>") right no-repeat;
background-color: lightblue;
background-transparency: 0.5;
background-position: right 15px top 22px;
background-size: 18px 18px;
}
Unfortunately, this setup doesn't work in Firefox. Does anyone know what the equivalent of -webkit-appearance: none is in Firefox to make it function properly?
Thanks for your help!