How to save the <select> drop-down list for testing styles in <option> in firebug?

How to save <select> drop-down list for style testing in firebug?

I am trying to style <option>

 <select class="select"> <option selected>Select</option> <option>Blue</option> <option >Red</option> <option>Green</option> <option>Yellow</option> <option>Brown</option> </select> 

But every time I need to open and see what happens after css changes in firebug. I know that it does not take a long time to open the result.

But I'm just curious to know if there is any trick to open the drop down list

+7
source share
1 answer

Make it somewhat included.

 <select class="select" multiple="multiple"> <option selected>Select</option> <option>Blue</option> <option >Red</option> <option>Green</option> <option>Yellow</option> <option>Brown</option> </select> 
+8
source

All Articles