serenity/Tests/LibWeb/Ref/css-any-link-selector.html
Sam Atkins 3af8b491b4 LibWeb: Implement :any-link and :local-link pseudo-class selectors
`:any-link` matches links, whether they have been visited or not.

`:local-link` matches links to the current URL.
2023-08-23 05:30:59 +02:00

7 lines
93 B
HTML

<style>
:any-link {
color: orange;
}
</style>
<a href="example.com">Link</a>