我不认为标题很好地解释了我的问题。基本上,在我的导航栏上,我希望当前页面是不同的颜色。
因此,例如,如果所有导航链接都是黑色的,我希望主页的当前页面是红色的。我已经通过给当前页面链接一个类然后给它定义一个颜色来尝试这个,但是它似乎没有改变。
这是我的代码:http: //jsfiddle.net/SCd4h/
<style>
.box {
text-align: center;
background-color: #F1F2F2;
border: 1.5px #D1D3D4 solid;
border-bottom: 3px solid red;
margin: 5px;
padding: 10px;
}
p {
font-size: 15px;
font-family: arial;
color: #585858;
}
.logo {
margin-left:70px;
margin-top: -160px;
}
a:visited {
text-decoration: none;
color: black;
font-weight: normal;
}
a:link {
text-decoration: none;
color: black;
letter-spacing: 500;
}
a:hover {
text-decoration: none;
color: #FC3B3B;
background: white;
}
a:active {
text-decoration: none;
color: red;
font-weight: normal;
}
ul {
list-style-type:none;
margin-right:50px;
margin-top: 60px;
padding:5px;
overflow: hidden;
font-family: 'Paytone One', sans-serif;
font-size: 18px;
}
li {
display:inline;
float:right;
margin-right: 30px;
}
.current {
font-family: 'Paytone One', sans-serif;
font-size: 18px;
color:red;
}
</style>
<body>
<ul>
<li><a href="index.html"/>HOME</a></li>
<li><a href="blog.html"/>BLOG</a></li>
<li><a href="photo.html" class="current"/>PHOTOS</a><li>
<li><a href="projects.html"/>PROJECTS</a></li>
</ul>
</br>
<img class="logo" src="louis2.png" alt="." width="149px" height="150px"/>
<div class="box">
</div>
<div class="box1">
</div>
<p>louismoore.net © All rights reserved 2012</p>
</body>