On a select dropdown, I need to make certain items \'strong/bold\'.
How can I do this?
Example of what I ideally require:
you could use :nth-child(N)
:nth-child(N)
option:nth-child(1), option:nth-child(4) { font-weight:bold; }
Demo: http://jsfiddle.net/Sotiris/sqshN/
Find more info and browser support for this pseudo-class at http://reference.sitepoint.com/css/pseudoclass-nthchild