01.22 伪类选择器

2019-01-22  本文已影响0人  xxxQinli

伪类选择器

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            /*设置a标签所有状态的样式*/
            /*a{
                color: saddlebrown;
            }*/
            a:link{
                color: green;
            }
            a:visited{
                color: greenyellow;
            }
            .a1:hover{
                color: red;
                background-color: lightgray;
            }
            a:active{
                color: slateblue;
            }
            
            
            p:hover{
                color: red;
            }
            
        </style>
    </head>
    <body>
        <p>我是段落</p>
        <a href="05选择器.html2">百度一下1</a>
        <a class="a1" href="https://www.baidu.com">百度一下2</a>
        <a class="a1" href="05选择器.html">百度一下3</a>
    </body>
</html>


上一篇下一篇

猜你喜欢

热点阅读