国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

如何刪除 html 超連結(jié)「a」標(biāo)籤的預(yù)設(shè)連結(jié)顏色?
P粉432906880
P粉432906880 2023-08-23 16:28:59
0
2
1074
<p>預(yù)設(shè)連結(jié)顏色為藍(lán)色。 如何刪除 html 超連結(jié)標(biāo)籤 <code><a></a></code><a> 的預(yù)設(shè)連結(jié)顏色? </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不起作用,請(qǐng)將其變更為:

text-decoration: none !important;

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

P粉403804844

繼承值

a { color: inherit; }

...將導(dǎo)致元素呈現(xiàn)其父級(jí)的顏色(我認(rèn)為這就是您正在尋找的)。

現(xiàn)場(chǎng)示範(fàn)如下:

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 >link</a> would normally take on the default link or visited color, but has been styled to inherit the color from the paragraph.</p>
最新下載
更多>
網(wǎng)站特效
網(wǎng)站源碼
網(wǎng)站素材
前端模板