码迷,mamicode.com
首页 > Web开发 > 详细

html-伪类

时间:2018-12-07 14:44:15      阅读:495      评论:0      收藏:0      [点我收藏+]

标签:add   鼠标   ack   char   cti   htm   site   har   title   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        /*LoVeHAte*/
        a:link{/*link 未被点击的链接*/
            color: blueviolet;
        }
        a:visited{/*已被点击的链接*/
            color: blue;
        }
        a:hover {/*鼠标悬停其上的元素  这个一定要掌握*/
            color: red;
            background: aqua;
            font-size: 20px;
            /*cursor: pointer; 手指*/
            /*cursor: default; 箭头*/
            /*cursor: wait; 等待*/
            /*cursor: help;帮助*/
         }
        a:active{/*鼠标已经再其上按下但是还没有释放的元素*/
            color: yellowgreen;
        }
        div{
            width: 50px;
            height: 50px;
            background: aqua;
        }

        /*改变的是div本身*/
        /*!*div:hover{*! */
            /*width: 100px;*/
            /*height: 100px;*/
            /*background: bisque;*/
        /*}*/
        p{
            width: 20px;
            height: 20px;
            background: red;
            display: none;
        }
        /*改变的是div的后代 p元素*/
        div:hover p{
            width: 30px;
            height: 30px;
            background: blue;
            display: block;
        }
    </style>
</head>
<body>
    <a href="http://www.baidu.com">去百度</a>
    <div>
        <p></p>
    </div>
</body>
</html>

 

html-伪类

标签:add   鼠标   ack   char   cti   htm   site   har   title   

原文地址:https://www.cnblogs.com/cxhzy/p/10082255.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!