有人可以帮我编辑这个小提琴。如何才能将文字变黑? CSS编码表示黑色,但在Dreamweaver预览屏幕中显示为浅灰色。
这是我的HTML代码:
<div id="class">
<p><a href="calendar.html">Calendar</a></p>
</div>
答案 0 :(得分:4)
您的链接颜色为黑色,只需添加此CSS。
a:hover,a:visited { color:#000; }
您没有看到黑色链接,因为您已经点击了链接,因此浏览器默认会应用访问样式。所以你需要覆盖这些CSS样式声明
示例强>
a:link {color:#000;} /* unvisited link */
a:visited {color:#000;} /* visited link */
a:hover {color:#000;} /* mouse over link */
a:active {color:#000;} /* selected link */
答案 1 :(得分:2)
习惯了
#class a{
color:#000;
}
答案 2 :(得分:1)
我认为您使用的Dreamweaver与良好的色彩不兼容。它只是用于素描。 相信浏览器中的颜色。
#class a:hover {
font-family: "Brush Script MT";
font-size: 22px;
color: #00C; <<<<<<<<<<<<<<<<<<<<<<<<<<<
font-weight: bold;
text-decoration: underline;
}
#class a:active {
font-family: "Brush Script MT";
font-size: 22px;
color: #00C; <<<<<<<<<<<<<<<<<<<<<<<<<<<
font-weight: bold;
text-decoration: underline;
}
更改颜色代码!!!进入#000
答案 3 :(得分:0)
或最基本的:
<a href="calendar.html"><font color="black">Calendar</font></a>
link - color - text - / color - / link
答案 4 :(得分:0)
它已经是黑色,无需添加额外的CSS或其他东西。您的Dreamweaver预览屏幕中的一些配置问题。