css 基础入门 超链接+伪类

1,引入图片方式:

           href  Hypertext Reference  超文本引用
           url    Uniform Resource Locator  统一资源定位符
           src   Source  来源

    href  link标签引用css文件
    url   background引用背景图片
    src   img标签引用图片文件

2,超链接

  a标签  

           属性

           href    放入要链接的网址    注意http不能省

           target    这个属性规定链接的打开方式

                      _blank   在新的窗口打开

                      _self      在当前窗口打开

转转转

3,伪类

     a:link      代表未访问的链接

     a:visited      访问过后的链接(判断是否访问过的依据是浏览器的浏览记录)

     a:hover       代表鼠标悬停的链接

     a:active        代表激活的链接

        a:link{
            color: #000;
        }
        a:visited{
            color: blue;
        }
        a:hover{
            color: green;
        }
        a:active{
            color: #f00;
        }

4,锚点

      点击a标签的时候默认会刷新当前页面,所以可以在底部设置下面代码。


返回顶部

               #   空链接

你可能感兴趣的:(css)