Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

css :is

// NO
section p b,
section p strong,
section span b,
section span strong {
	font-weight: 800;
}

// YES
:is(section) :is(p, span) :is(b, strong) {
	font-weight: 800;
}
Source by css-tricks.com #
 
PREVIOUS NEXT
Tagged: #css
ADD COMMENT
Topic
Name
7+2 =