Possible Duplicate:
Is it possible to style a select box?
I want to customise my select tag as like the image above which should looks equally in all browsers.
CSS:
.select-bg
{
background:url(../images/select-bg.png) no-repeat top center;
width:350px;
height:47px;
}
.select-bg select
{
background:#ff0000;
}
<div class="select-bg">
<select>
<option>1</option>
<option>1</option>
<option>1</option>
<option>1</option>
</select>
</div>
I want the the above image as a background of a select box.
So, can you please help ?