Can I colour backgrounds of selected items in HTML select options with CSS only?

后端 未结 4 2095
慢半拍i
慢半拍i 2020-11-30 12:10

I\'ve searched around a lot and see people suggesting that:

::-moz-selection {background: red;}
::selection {background: red; }

..works for

4条回答
  •  伪装坚强ぢ
    2020-11-30 13:00

    ::selection doesn't apply to selected options; it applies to highlighted text. Either you're misinterpreting their suggestions, or what they said is flat-out wrong.

    According to this answer, you're supposed to be able to use option:checked for styling the selected items:

    #dropdowns option:checked {
        background: red;
    }
    

    But I haven't been able to get it to work for elements in this test fiddle.

提交回复
热议问题