Table of Contents

Selector is pseudo-class

About

:is() 1) is a matches-any logical pseudo-class that takes a selector list as its argument.

Example

matches any element that is being hovered/focused

in all namspace

*|*:is(:hover, :focus) 

in the default namespace

*|*:is(*:hover, *:focus)