我有一個div,我想覆蓋我的全局鏈接樣式。我有兩種鏈接樣式,一種是全球的,一種是特定的。下面的代碼:覆蓋HTML div內的鏈接樣式
A:link {text-decoration: none; color: #FF0000;}
A:visited {text-decoration: none; color: #FF0000;}
A:hover {text-decoration: none; color: #FF0000;}
A:active {text-decoration: none; color: #FF0000;}
#macrosectiontext
{
position:relative;
font:Arial, sans-serif;
text-align:center;
font-size:50px;
font-style: bold;
margin-top:245px;
opacity: 0.6;
background-color:transparent;
}
#macrosectiontext A:link {text-decoration: none; color: #000000;}
#macrosectiontext A:visited {text-decoration: none; color: #FFFFFF;}
#macrosectiontext A:hover {text-decoration: none; color: #FFFFFF;}
#macrosectiontext A:active {text-decoration: none; color: #FFFFFF;}
和我這樣使用DIV:
<div id="macrosectiontext"><a href="www.google.it">bla bla bla</a></div>
但它似乎不起作用。 div仍繼承全局鏈接風格。
我在您的HTML中沒有看到錨鏈接 –
只需編寫#macrosectiontext {color:#000000};'這將起作用 –
對我來說工作正常。這是一個[jsfiddle](http://jsfiddle.net/Xz8KQ/)。 –