Problem with text-indent style ,<select> tag on IE
Hi Developers,
i tried text-indent style class for <select> <option> tag .. The following given code is working Mozilla fire box browser, but it is not working on IE..
Here Code is,
<html>
<head>
<title>Main </title>
<style>
.style {color:green;font-weight:bold}
.style1 {text-indent:45px;color:red;}
</style>
</head>
<body>
<form name="form1">
<select name="retail" >
<option selected disabled value="">Visit an Apple Store</option>
<option value="Arizona" class="style">Arizona</option>
<option class="style1" value="/retail/chandler/">Chandler, Chandler Fashion Center</option>
<option class="style1" value="/retail/chandler/">Phoenix, Biltmore</option>
<option class="style1" value="/retail/chandler/">Tucson, La Encantada</option>
<option value="California" class="style">California</option>
<option value="/retail/breamall/" class="style1"> Brea, Brea Mall</option>
<option value="/retail/burlingame/" class="style1"> Burlingame, Burlingame</option>
<option value="/retail/cortemadera/" class="style1"> Corte Madera, Corte Madera</option>
<option value="/retail/southcoastplaza/" class="style1"> Costa Mesa, South Coast Plaza</option>
<option value="/retail/baystreet/" class="style1"> Emeryville, Bay Street</option>
</select>
</form>
</body>
</html>
Please help me out immdly . Thanks in Advance
Murugan Raj
|