mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
11 lines
439 B
HTML
11 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>
|