One of the HTML elements I'm working with is a select element, which looks like this:
<select>
<option>1</option>
<option>2</option>
<option>3</option>
</select>
This select element has some CSS applied to it, such as this example:
select {
background-image: url(//arrow.png); /* This is an arrow image */
}
I want to revert back to using the default user agent arrow image and its accompanying CSS for the select element. Is there a way to force the element to use the default arrow provided by browsers like IE, Chrome, and Firefox?