I have this code :
<select name="color" selected="selected" id="color"  style="width:100px;">
<option>colors</option>
php :-
    if(isset( $_GET['size']) ) {
  $size = $_GET['size'];
  }
  $query = "SELECT color FROM product_attr WHERE size='".$size."' AND `quantity`!='0'"; 
  $result = mysql_query($query);
    while ($query_row = mysql_fetch_array($result)) {
      echo "<option style='background-color:$query_row[0]' value ='".$query_row[0]."'></option> ";
      }
it works fine and i get every <option> with its color as a background but the only issue is that the hover effect of the mouse on the <option> makes the colors looking bad kinda and i don't know how to remove it! any suggestions? thanks in advance
 
    