使用 CSS 设置所有未访问的链接的样式
若要设计所有未访问的链接的样式,请使用 CSS :link 选择器。您可以尝试运行以下代码,来实现 :link 选择器
示例
<!DOCTYPE html> <html> <head> <style> a:link { background-color: orange; } </style> </head> <body> <a href = "https://www.example.com">Demo Website</a>https://www.example.com/ </body> </html>
广告