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