html a标签

时间:2023-03-08 15:47:39
html a标签

<a> 标签定义超链接,用于从一张页面链接到另一张页面。

<a> 元素最重要的属性是 href 属性,它指示链接的目标。

在所有浏览器中,链接的默认外观是:

  • 未被访问的链接带有下划线而且是蓝色的
  • 已被访问的链接带有下划线而且是紫色的
  • 活动链接带有下划线而且是红色的

<a

href="www.baidu.com"    <!-- 跳转不到百度,要在前面加上 http://  -->

target="_blank"    <!-- _blank 新建页面跳转;这个属性不写,在当前页面跳转 -->

title="百度"    <!-- 鼠标悬停提示 -->

>a标签</a>

a:hover{color:#999;}    /*鼠标悬停,颜色改变*/

a:active{text-decoration: underline;} /*鼠标点击时,出现下划线;text-decoration: none;没有下划线*/

a:visited{color:blue;}    /*鼠标点击过后,颜色改变*/

a:link{color:green;}    /*首次看到时的颜色*/