热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

CSS选择器的作用

CSS选择器的作用原文:https://www.geeksfo

CSS 选择器的作用

原文:https://www.geeksforgeeks.org/role-of-css-selector/

在本文中,我们将讨论在设计网页时 CSS 选择器是如何重要的。CSS 选择器在响应网页中的作用非常重要。让我们一个一个讨论。
子选择器的作用:在子选择器中,任何元素的属性都是另一个元素的直接父元素。

语法:

if article > p

它定义段落元素是文章的直接子元素,那么 CSS 选择器属性将适用。

超文本标记语言




    


    

Child Selector


    

        

Subheading 1


        
        

            

                In this example, article is
                not the direct child and
                ARTICLE which is inside DIV,
                which is inside SECTION. In
                CSS properties of child,
                selector will not apply in
                this section.
            

        

    

    

Subheading 2


    

        

            In this example ARTICLE as a
            direct child of the SECTION
            element. In CSS properties
            of child, selector will directly
            apply in this section.
        

        
    


      

上述代码的输出验证了子 CSS 选择器属性是否适用于节元素。

输出:

后代选择器的角色:后代选择器的 CSS 选择器属性适用于每一个级别或父元素。
语法:

section li

它定义“li”是子元素,但在任何级别上,它也只考虑截面元素和属性中的“li”元素适用。

超文本标记语言




    


    

Descendant Selector


    

        Table of contents:
        

                
  • Article 1

  •             
  • Article 2

  •             
  • Article 3

  •         

    

    

        Shopping List:
        

                
  • COOKIEs

  •             
  • Cake

  •             
  • Pie

  •         

    



输出:


推荐阅读
author-avatar
Echocc07
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有