How to style Disabled Options in a form

后端 未结 8 1645
不思量自难忘°
不思量自难忘° 2020-12-10 10:39

I\'m using a form with a drop-down menu that contains some options disabled, so the users cannot select them. I\'m trying to customize via css these elements but I have some

8条回答
  •  借酒劲吻你
    2020-12-10 11:13

    
    
    option:disabled {
       background: #ccc;
       width: 500px;
       padding: 5px;
       }
    
    option.colr {
       background: red;
       width: 500px;
       padding: 5px;
       }
    

    Check the link http://jsfiddle.net/W5B5p/110/

提交回复
热议问题