mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
19 lines
443 B
HTML
19 lines
443 B
HTML
<!doctype html>
|
|
<link rel="match" href="reference/css-has-subsequent-sibling.html" />
|
|
<style>
|
|
a:has(~ span) {
|
|
color: orange;
|
|
}
|
|
</style>
|
|
<div>
|
|
<a href="https://example.com">Link</a><span>Hello!</span>
|
|
</div>
|
|
<div>
|
|
<a href="https://example.com">Link</a><em>Hello!</em>
|
|
</div>
|
|
<div>
|
|
<a href="https://example.com">Link</a><em>Hello</em><span>world!</span>
|
|
</div>
|
|
<div>
|
|
<a href="https://example.com">Link</a>
|
|
</div>
|