我尝试过类似问题的其他一些解决方案,但都没有。
我有一个链接;
<a href="home.html"> Home </a>
在<div>
范围内。我正在使用外部CSS样式表。
a:link {
color: black;
text-decoration: none;
font-family: sans-serif;
}
font-family正在运行,但颜色和文字装饰却没有。我遇到了类似的问题:访问过。
我尝试为此链接创建一个特定的类,但这没有任何效果。我也尝试在我的样式表中使用'div a:link',这也没有效果。
我不愿意使用<a href="home.html" style="the style I want">
,因为有很多链接需要使用相同的样式。
答案 0 :(得分:1)
试试这个:
div a {
color: black;
text-decoration: none;
font-family: sans-serif;
}
或...给div一个类名:
.nav a {
color: black;
text-decoration: none;
font-family: sans-serif;
}
<div class="nav">
<a href="home.html"> Home </a>
</div>
答案 1 :(得分:1)
似乎其他一些css已经存在于你的页面中并且它正在继承。试试这个,
div a {
color: black !important;
text-decoration: none !important;
font-family: sans-serif !important;
}