Consider the following HTML markup:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>search/master</title>
<style type="text/css">
select{
background-color: pink;
}
option{
background-color: white;
}
</style>
</head>
<body>
<p>
<select>
<option>one........</option>
<option>two........</option>
</select>
</p>
</body>
</html>
Output on FF as follows: (Similar output comes on Chrome, Safari and Opera as well)

But output on IE as follows:

What is the reliable and simple workaround to make the output on IE looks similar to other browsers?
If you definitely want to do this, you could use a 1px x 1px background image, and set the option to
:transparentSee the jsfiddle example i have done for you