Remove ':hover' CSS behavior from element

后端 未结 6 1406
别那么骄傲
别那么骄傲 2020-11-29 16:57

I have CSS that changes formatting when you hover over an element.

HTML:

blah

CSS:

6条回答
  •  無奈伤痛
    2020-11-29 17:39

    Use the :not pseudo-class to exclude the classes you don't want the hover to apply to:

    FIDDLE

    blah
    blah
    blah
    .test:not(.nohover):hover { border: 1px solid red; }

    This does what you want in one css rule!

提交回复
热议问题