html - My CSS Hover and Active styling is not working -
here navigation bar follows:
<ul> <li><a href="index.html">home</a></li> <li><a href="portfolio.html">portfolio</a></li> <li><a href="resources.html">resources</a></li> <li><a href="testimonials.html">testimonials</a></li> <li><a href="about.html">about</a></li> <li><a href="contact.html">contact</a></li> </ul> </nav>
and css:
a: hover { color: brown; } a: active { color: #1490a5; }
im trying have active link in 1 colour , when hover on colour, not working unfortunately
remove space between 2 dots , pseudo class
a:hover { color: brown; } a:active { color: #1490a5; }
Comments
Post a Comment