Question

This css code doesn't work.

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

Code of my dropdown:

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

select {
    width: 100px;
    height: 30px;
    -webkit-appearance: none; /* gets rid of default appearance in Webkit browsers*/
    -moz-appearance: none; /* Get rid of default appearance for older Firefox browsers */
    -ms-appearance: none; /* get rid of default appearance for IE8, 9 and 10*/
    appearance: none;
    background-color: none;
    border: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius:0px;
    -webkit-border-top-right-radius:0px;
    -moz-border-bottom-right-radius:0px;
    background-image: url('../img/arrow_question.png');
    background-position: center;
    background-size: 30%;
    background-repeat: no-repeat;
}

enter image description here

I've been looking for a long time and can't find a solution.

Was it helpful?

Solution 2

This helped:

div {
    width: 80px;
    overflow: hidden;
    border: 1px solid black;
}
select {
    width: 100px;
    border: 0px;
}

OTHER TIPS

Use appearance: none; to achieve what you are looking for.

For instance,

select{
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: url("yourBackroundImagePath.extension") no-repeat scroll 0 0 transparent;

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

Hope this helps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top