如何刪除 html 超連結「a」標籤的預設連結顏色?
P粉432906880
P粉432906880 2023-08-23 16:28:59
0
2
916
<p>預設連結顏色為藍色。 如何刪除 html 超連結標籤 <code><a></a></code><a> 的預設連結顏色? </a></p>
P粉432906880
P粉432906880

全部回覆(2)
P粉884548619

嘗試這樣的事情:

a {
    color: #0060B6;
    text-decoration: none;
}

a:hover {
    color:#00A0C6; 
    text-decoration:none; 
    cursor:pointer;  
}

如果text-decoration不起作用,請將其變更為:

text-decoration: none !important;

!important 規則會覆寫 text-decoration 屬性的所有其他樣式。您可以在此處閱讀更多相關資訊。

P粉403804844

繼承值

a { color: inherit; }

...將導致元素呈現其父級的顏色(我認為這就是您正在尋找的)。

現場示範如下:

a {
  color: inherit;
}
<p>The default color of the html element is black. The default colour of the body and of a paragraph is inherited. This
  <a href="http://example.com">link</a> would normally take on the default link or visited color, but has been styled to inherit the color from the paragraph.</p>
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!