Кроссбраузерная стилизация select на css
В редакторе
Кроссбраузерная стилизация select на css
Brain_Script
981
2019-07-12 12:05:32
select {
width: 100px;
height: 26px;
border-radius: 10px;
-webkit-appearance: none;
background-image: url('/images/stories/select-arrow-pink.png');
background-position: right center;
background-repeat: no-repeat;
line-height: 1em;
/* for FF */
-moz-appearance: none;
text-indent: 0.01px;
text-overflow: '';
/* for IE */
-ms-appearance: none;
appearance: none!important;
}
select::-ms-expand {
display: none;
}
Войдите для добавления комментария.