84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
預設連結顏色為藍色。 如何刪除 html 超連結標籤 的預設連結顏色?
嘗試這樣的事情:
a { color: #0060B6; text-decoration: none; } a:hover { color:#00A0C6; text-decoration:none; cursor:pointer; }
如果text-decoration不起作用,請將其變更為:
text-decoration
text-decoration: none !important;
!important規則會覆寫text-decoration屬性的所有其他樣式。您可以在此處閱讀更多相關資訊。
!important
繼承值:
a { color: inherit; }
...將導致元素呈現其父級的顏色(我認為這就是您正在尋找的)。
現場示範如下:
The default color of the html element is black. The default colour of the body and of a paragraph is inherited. This link would normally take on the default link or visited color, but has been styled to inherit the color from the paragraph.
嘗試這樣的事情:
如果
text-decoration
不起作用,請將其變更為:!important
規則會覆寫text-decoration
屬性的所有其他樣式。您可以在此處閱讀更多相關資訊。繼承值:
...將導致元素呈現其父級的顏色(我認為這就是您正在尋找的)。
現場示範如下: