Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.36 KB | None | 0 0
  1. .topnav a {
  2.   float: left;
  3.   color: #f2f2f2;
  4.   text-align: center;
  5.   padding: 24px 26px;
  6.   text-decoration: none;
  7.   font-size: 17px;
  8. }
  9.  
  10. /* Change the color of links on hover */
  11. .topnav a:hover {
  12.   background-color: #ddd;
  13.   color: black;
  14. }
  15.  
  16. /* Add a color to the active/current link */
  17. .topnav a.active {
  18.   background-color: #CB4335;
  19.   color: white;
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement