blob: 4f5d49ab82227ffa5e338c15eb0cc4754e26f6b3 [file] [log] [blame]
<!doctype html>
<html>
<head>
<style>
container > target {
border: 5px solid black;
color: blue;
}
.target {
color: white;
}
:is(foo, foo, container > target) {
background-color: green;
color: purple;
border: 25px solid red;
}
target {
background-color: red;
}
container > * {
color: black;
}
container > target {
border: none;
}
</style>
</head>
<body>
<container>
<target class="target">Target</target>
</container>
</body>
</html>