У меня есть 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 по-прежнему наследует стиль глобальной ссылки.