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

Popular posts from this blog

Script For Login, Logout and View Using PHP, MySQL and Bootstrap

Real-Time Web Interface to MQTT using Socket.io and Node.js

Customize radio buttons and checkboxes with CSS sprites