mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
12 lines
439 B
HTML
12 lines
439 B
HTML
<!doctype html>
|
|
<link rel="match" href="reference/css-has-compound.html" />
|
|
<style>
|
|
a:has(span.nice > em) {
|
|
color: orange;
|
|
}
|
|
</style>
|
|
<a href="https://example.com"><em><span class="nice"><em>Link</em></span></em></a>
|
|
<a href="https://example.com"><em>Link</em></a>
|
|
<a href="https://example.com"><em><span class="hello"><em>Link</em></span></em></a>
|
|
<a href="https://example.com"><em><span class="nice">Link</span></em></a>
|