开发者

how to paint link that i visit and link that i dont visit with green ? (asp.net)

开发者 https://www.devze.com 2023-02-04 19:45 出处:网络
i hav开发者_开发百科e link in my webform how to do that even i visit or not visit the color will be green ?

i hav开发者_开发百科e link in my webform

how to do that even i visit or not visit the color will be green ?

thanks in advance


Use the :visited css pseudo class

a, a:visited { color: green; }


You can do it with CSS.

a, a:visited {
    color: green;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消