see, i build my own website using just html and css. I'm figuring out most things on my own but i can't find a way to solve this problem, i guess because of my limited knowledge. I have this simple list:
<ul class="nav">
<li><a href="#">HOME</a></li>
<li><a href="#">GALLERY</a></li>
<li><a href="maps.html">PARKING</a></li>
<li><a href="#">DOGS</a></li>
<li><a href="#">ABOUT</a></li>
</ul>
.nav > li > a {
text-decoration:none;
font-size: 20px;
color: #ffffff;
}
I'd add a class to it and style based on that. No reason to get super specific with selectors here.
<li><a href="maps.html" class="parking">Parking</a></li>
Then in your CSS you can do:
.parking:active {
...
}