我的CSS有问题,当我把鼠标悬停在我的页面上,当我试图在我的页面上创建链接时,另一种颜色。问题是,我有2个页面,它可以在一个页面中工作,但我不能让它在另一个页面中工作。我不知道为什么它不起作用?任何人都有任何想法?
我正在使用它:
<style type="text/css">
font-weight: {bold}
A:link {text-decoration: bold; font-weight:bold}
A:visited {text-decoration: bold; font-weight:bold}
A:hover {color: #F91B27; text-decoration: bold}
A:active {text-decoration: bold; font-weight:bold}
</style>
答案 0 :(得分:0)
我同意第一个答案......“看看路径”但是如果这不起作用我会建议你进行一个简单的测试(它总是帮我单独做的东西)做一个简单的测试总是适用于我,看......你需要这样做:
使用您想要的代码创建简单的css文件:
font-weight: {bold}
a:link {text-decoration: bold; font-weight:bold}
a:visited {text-decoration: bold; font-weight:bold}
a:hover {color: #F91B27; text-decoration: bold}
a:active {text-decoration: bold; font-weight:bold}
创建一个测试页面“With Out”引用此css:
没有CSS的页面 没有CSS没有CSS
创建第二页(这将是[page1] .html),它将添加对您的css文件的引用:
评论1:请注意myCss是您创建的css文件的名称 注释2:在href中,您需要替换文件的当前位置 http://www.w3schools.com/tags/att_link_href.asp
<html>
<head>
<title> Page Referencing Css </title> <link rel="stylesheet" type="text/css" href="myCss.css">
</head>
<body>
<a href="#"> link one </a>
</body>
</html>
希望它有所帮助!!!