How can I keep a link button in the navigation menu in a different style?

0

The following thing happens I am developing a web page but, I have seen and I would like that when I click on a button of the navigation menu and go to that page, I have a different style in the navigation menu button that It tells me where I am. In a few words I would like to tell the user through CSS and the navigation buttons on which page it is.

    
asked by Edward_Master 07.06.2018 в 21:25
source

1 answer

0

What you are looking for is with the pseudoclass :active in css, it allows you to define the style of a selected link, while it is being selected.

a:active { color: #ff00ff; text-decoration: none}
    
answered by 07.06.2018 в 21:36