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

PHP Ajax Login Validation Tutorial

Insert CheckBox and Radio button Data in MySQL Database Using PHP