Hi guys,
It looks like I am having a css problem in IE 8. The code below runs on FF without a problem. However it seems that in IE 8 the css style is not applied to the select element. Do you know what could cause the problem in IE 8? I want it to be compatible with both browsers.
Here's the code:
<html>
<body>
<style type="text/css">
.highlight{
border-style: solid;
border-width: 2px;
border-color: #FF0000;
}
</style>
<table>
<tr>
<td>
<select class="highlight" >
<option></option>
<option value="125" >Test1 - Test2</option>
</select>
</td>
</tr>
</table>
</body>
</html>