Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 9 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
将您的 main.css 文件编辑为
您在选择器下拥有所有链接:
您还可以将 #nav ul li a 部分与 a:link, a:visited 分开并只为导航链接而不是所有链接分配颜色。
Edit your main.css file to
You have all your links under the selector:
You could also separate the #nav ul li a part from the a:link, a:visited and assign a color just to the nav links, instead of all links.
在这两种情况下,您的 CSS 都使用 a:link 和 a:visited
分隔它们
您可以使用和
Your CSS in both cases use the a:link and a:visited
You can separate them with
and
原因是您在
标记中指定颜色
以覆盖上面的 css 写入
the reason is that you give color in
<a>
tagfor overwrite this above css write