<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>:is() selector demo</title>
</head>
<body>
<section class="header">
<h1>Home</h1>
<h1>About</h1>
<h1><a>FAQ</a></h1>
</section>
</body>
</html>
.header {
display: flex;
column-gap: 2rem;
}
:is(section.header h1) {
color: blue;
}
/* :is(section.header h1) a {
color: black;
}
*/
.header a {
color: green;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.