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

CSS 选择器 知识点

时间:2019-05-11 21:50:34      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:ack   bsp   import   pre   class   知识   html   strong   htm   

<html>
<head>
    <style type="text/css">
        h1 > strong { /*子元素选择器 只选择自己 的子元素 子的子不管 */
            color: red;
        }

        h2 strong { /*后代选择器 选择子元素 子的子 */
            color: red;
        }
    </style>
</head>

<body>
    <h1>This is <strong>very</strong> <strong>very</strong> important.</h1>
    <h2>This is <em>really <strong>very</strong></em> important.</h2>
</body>
</html>

 

CSS 选择器 知识点

标签:ack   bsp   import   pre   class   知识   html   strong   htm   

原文地址:https://www.cnblogs.com/kikyoqiang/p/10849898.html

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