:any-link
Quick Summary for :any-link
The :any-link CSS pseudo-class selector represents an element that acts as the source anchor of a hyperlink, independent of whether it has been visited. In other words, it matches every <a> or <area> element that has an href attribute. Thus, it matches all elements that match :link or :visited.
Code Usage for :any-link
/* Selects any element that would be matched by :link or :visited */ :any-link {   color: green; } 
More Details for :any-link

:any-link

The :any-link CSS pseudo-class selector represents an element that acts as the source anchor of a hyperlink, independent of whether it has been visited. In other words, it matches every <a> or <area> element that has an href attribute. Thus, it matches all elements that match :link or :visited.

/* Selects any element that would be matched by :link or :visited */ :any-link {   color: green; } 

Syntax

:any-link

Examples

HTML

<a href="https://example.com">External link</a><br> <a href="#">Internal target link</a><br> <a>Placeholder link (won't get styled)</a> 

CSS

a:any-link {   border: 1px solid blue;   color: orange; }  /* WebKit browsers */ a:-webkit-any-link {   border: 1px solid blue;   color: orange; } 

Result

Specifications

Specification
Selectors Level 4 # the-any-link-pseudo

See also

Creating hyperlinks Matches HTML elements: <a> and <area> with an href attribute Related CSS selectors: :visited :link

Last modified: Jan 3, 2022, by MDN contributors

Select your preferred language English (US)EspañolFrançais日本語Русский中文 (简体) Change language

No Items Found.

Add Comment
Type in a Nick Name here
 
Related Search Terms
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

You could also follow me on twitter. I have a couple of youtube channels if you want to see some video related content. RuneScape 3, Minecraft and also a coding channel here Web Dev.

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote

The important thing is not to stop questioning. Curiosity has its own reason for existence. One cannot help but be in awe when he contemplates the mysteries of eternity, of life, of the marvelous structure of reality. It is enough if one tries merely to comprehend a little of this mystery each day. Never lose a holy curiosity.


Albert Einstein
Random CSS Property

orphans

The orphans CSS property sets the minimum number of lines in a block container that must be shown at the bottom of a page, region, or column.
orphans css reference