1

I have a custom img for my dropdown option menu and i tried other browser like Internet Explorer and FireFox...

My Code:

textarea {
    background: #9d9d9d;
    color: #000000;
    width: 90%;
    padding: 5px;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
}
.styled-select {
   width: 88%;
   height: 30px;
   overflow: hidden;
   background: url('../img/down.png') no-repeat right #9d9d9d;
   border: 1px solid #ccc;
   border-radius:5px;
   -moz-border-radius:5px;
   -webkit-border-radius:5px;
}

This is the drop down on firefox

This is the Drop Down on Internet Explorer

First Img is for Firefox the Second img is for Internet Explorer

Patrick Sterza
  • 53
  • 1
  • 1
  • 7

1 Answers1

1

For I.E:

select::-ms-expand
{  
 display: none;
}

For Firefox:

.select
{
-moz-appearance: none; 
 appearance: none;    
 text-overflow: ''; 
}
Dan
  • 2,701
  • 1
  • 29
  • 34