Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Select removing dropdown arrow - Cross-browser

My code works well in all browsers except IE. I styled the select but not able to remove the default arrow in IE. Simple code: HTML

<form>
<label for="selectitem">Food Favorites</label>
<select id="selectitem">
    <option>Choose...</option>
    <option value="italian">Italian</option>
    <option value="japanese">Japanese</option>
    <option value="mexican">Mexican</option>
    <option value="vietnamese">Vietnamese</option>
</select>
</form>

CSS code:

form {
    position: relative;
    top: 50px;          
}

form * {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    behavior: url(PIE.htc);
}

select, option {
    border: none;
    background: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
}
    body {
    background: #666;
}

form {
    position: relative;
    width: 340px;
    margin: 0 auto;
    font-weight: bold;
    color: #DDD;
}

select {
    background: #555;
    border-radius: 4px;
    width: 240px;
    height: 35px;
    background: url('select.png') no-repeat;
    color: #DDD;
    padding: 8px;
    outline: solid transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';

}

select:focus {
    background: url('select.png') no-repeat 0 -35px;
}

option {
    background: #666;
    color: #DDD;
    padding: 5px;
    text-align: center;
}

I managed to remove the arrow in Firefox with

webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: '';

Image of background for select: http://i.imgur.com/PSolPt7.png

like image 526
Yamona Avatar asked Dec 07 '22 02:12

Yamona


1 Answers

Here is the answer to my question :) For Firefox use

select {

    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

For IE use

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

Which -ms-expand is the arrow for Microsoft IE

like image 185
Yamona Avatar answered Dec 11 '22 08:12

Yamona