treehouse : what would you like to learn today?
Web Design Web Development iOS Development

stay clicked until another link is clicked help

  • I finished creating the navigation bar on my website. And i want to have each tab remain white until another tab is clicked on the website. How do i do that? I prefer CSS3 if possible please. Thanks.---->Website.

  • If you want to use CSS3, I would suggest that you try using the target psuedo class. If you specify the href of one of the links as the name of one of your divs following a # you can then specify style to be active only when the pages URL has the fragment of a # followed by your div's name.

    <a id="mydiv" href="#mydiv">Click Me!</a>
    
    #mydiv{color:red;}
    #mydiv:target{color:blue}
    

    When you click the link in the above example, the font color should be altered until you click on another link.