css select dropdown bold on some

后端 未结 5 1219
迷失自我
迷失自我 2021-02-13 05:30

On a select dropdown, I need to make certain items \'strong/bold\'.

How can I do this?

Example of what I ideally require:

5条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-13 06:01

    you could use :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

提交回复
热议问题