1)超链接使用
基本语法
<a href=”访问地址”>文字内容</a><br /><a href="[https://www.baidu.com"](https://www.baidu.com") target="_blank">百度</a>
功能
属性介绍
1、href 属性
链接的目标url地址。
目标url地址:可以是绝对路径。也可以是相对路径。
2、target 属性
在何处打开目标 URL。仅在 href 属性存在时使用。值为:_blank、_self、_parent、_top
值 | 描述 |
---|---|
_blank | 在新窗口中打开被链接文档。 |
_self | 默认。在相同的框架中打开被链接文档。 |
_parent | 在父框架集中打开被链接文档。 |
_top | 在整个窗口中打开被链接文档。 |
framename | 在指定的框架中打开被链接文档。 |
提示:这些 target 的所有 4 个值都以下划线开始。任何其他用一个下划线作为开头的窗口或者目标都会被浏览器忽略,因此,不要将下划线作为文档中定义的任何框架 name 或 id 的第一个字符。
2)锚点链接
作用:
定义锚点:
超链接:
3)超链接样式
基本语法
功能
示例
1、a:link定义正常链接的样式
a:link {
color:red;
text-decoration:underline;
}
color:red; 颜色为红色
text-decoration:underline; 下划线
2、a:visited 定义已访问过链接的样式
a:visited {
color:green;
text-decoration:none;
}
color:black; 颜色为绿色
text-decoration:none; 无下划线
3、a:hover 定义鼠标悬浮在链接上时的样式
a:hover {
color:black;
text-decoration:none;
}
color:black; 颜色为黑色
text-decoration:none; 无下划线
4、a:active 定义鼠标点击链接时的样式
a:active {
color: white;
text-decoration:none;
}
color: white; 颜色为白色
text-decoration:none; 无下划线