:local-link

實驗性: 這是一項實驗性技術
在生產中使用此技術之前,請仔細檢查瀏覽器相容性表格

:local-link CSS 偽類表示指向同一文件的連結。因此,它是超連結的源錨點,其目標的絕對 URL 與該元素的文件 URL 匹配。

css
/* Selects any <a> that links to the current document */
a:local-link {
  color: green;
}

語法

css
:local-link {
  /* ... */
}

示例

HTML

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

css
a:local-link {
  color: green;
}

結果

規範

規範
選擇器 Level 4
# local-link-pseudo

瀏覽器相容性

目前沒有瀏覽器支援此功能。

另見