Change visited links color [duplicate]

-1

Good afternoon!

Would you like to know how I can change the color of visited links on a page using javascript?

    
asked by anonymous 06.02.2018 / 18:23

1 answer

2

You can use the bookmark in the css itself:

a:visited { color: pink; }

Source: link

Via javascript there is the method of changing the css:

Use JavaScript to change ownership in CSS

    
06.02.2018 / 18:26