hide dropdown arrow of a select element and display some image
//select with hidden arrow
select {
-moz-appearance: none;
text-indent: 0.01px;
text-overflow: '';
}
//select with image on right side
select {
-moz-appearance: none;
width: 100%;
padding: 5px 10px;
height: 34px;
overflow: hidden;
background: url(images/timer.png) no-repeat right #fff;
border: 1px solid #ccc;
}
Comments
Post a Comment