In CSS, *
will match any element.
Frequently, *|*
is used instead of *
to match all elements. This is generally used for testing purposes.
What is the difference between *
and *|*
in CSS?
In CSS, *
will match any element.
Frequently, *|*
is used instead of *
to match all elements. This is generally used for testing purposes.
What is the difference between *
and *|*
in CSS?