I have tried a lot but can not do this. I want to show the red background colour to the selectbox after option is selected.
<select>
    <option>1</option>
    <option>2</option>
    <option>3</option>
</select>
<style type="text/css">
select:hover { 
    background:#Ff0000; 
    color : #ffffff;
}
</style>
 
     
     
     
     
     
    