:local-link
Quick Summary for :local-link
:local-link CSS pseudo-class represents a link to the same document. Therefore an element that is the source anchor of a hyperlink whose target's absolute URL matches the element's own document URL.
Code Usage for :local-link
<pre class="brush: css notranslate"><code><span class="token comment">/ Selects any <a> that links to the current document /</span> <span class="token selector">a:local-link</span> <span class="token punctuation">{</span> <span class="token property">color</span><span class="token punctuation">:</span> green<span class="token punctuation">;</span> <span class="token punctuation">}</span> </code></pre>
More Details for :local-link
:local-link
The :local-link CSS pseudo-class represents a link to the same document. Therefore an element that is the source anchor of a hyperlink whose target's absolute URL matches the element's own document URL.
/* Selects any <a> that links to the current document */ a:local-link { color: green; } Syntax
:local-link
Examples
HTML
<a href="#target">This is a link on the current page.</a><br> <a href="https://example.com">This is an external link</a><br> CSS
a:local-link { color: green; } Result
Specifications
No specification foundNo specification data found for css.selectors.local-link.Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.
No compatibility data found for css.selectors.local-link.Check for problems with this page or contribute missing data to mdn/browser-compat-data.
See also
Link-related pseudo-classes::link,:visited, :hover, :active Select your preferred language English (US)Français Change language