I have a developed application that needs to function properly on all browsers, with special emphasis on Chrome. Within the application, there is a dropdown list styled using the CSS below:
.ddlStyle{
background-image: url("../Images/navigation_bg.jpg");
background-color:Gray;
color: #FFFFFF;
height:25px;
width:auto;
width:100px;
font-family:Trebuchet MS;
border:1px;
border:ThreeDShadow;
}
However, I am experiencing difficulties with the background image not loading properly in Chrome. Interestingly, it functions correctly in Safari, IE, and Mozilla.
Any suggestions or solutions?