超链接的简单知识

    xiaoxiao2022-07-07  185

    超链接的简单知识

    这里我就先写一点关于超链接的简单知识:

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style tyle="text/css"> a:link{ color:green; /*点击之前*/ } a:visited{ color:purple; /*点击之后*/ } a:hover{ color:black; /*鼠标划过*/ } a:active{ color:yellow; /*当鼠标左键划过并且点击不动*/ } </style> </head> <body> <a href="#">这是超链接</a> </body> </html>

    很简单对吧,是的就这么简单。

    最新回复(0)