欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

CSS中关于多个选择器中是否含有空格的区别_html/css_WEB-ITnose

程序员文章站 2022-05-13 23:30:42
...
CSS中关于多个选择器中是否含有空格的区别

CSS中多个选择器中含有空格和不含有空格区别很大,区分下列含义:

#header.callout { }#header .callout { }

第一个表示ID为header的同时类名为callout的选择器,
第二个表示ID为header下子节点中含有类名为callout的选择器

我们用以下例子表明:

#header.callout { }
#header .callout { }

#header .callout { }中我们选择的是其中的类名为callout的子div。

版权声明:本文为博主原创文章,未经博主允许不得转载。