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

什么&。“在”&。scss字幕的显示吗?-Whatdoes'&.'in'&.sub-title'indicatesinscss?

IamanewbietoCSSandSCSS.我是CSS和SCSS的新手。Inthefollowingcode,在以下代码中,.title{width:7

I am a newbie to CSS and SCSS.

我是CSS和SCSS的新手。

In the following code,

在以下代码中,

.title {
    width: 718px;
    &.sub-title {
      width: 938px;
   }
}

What does &. means? Is it same as nesting class?

什么&。意味着什么?它与嵌套类相同吗?

1 个解决方案

#1


73  

The & concatenates the parent class, resulting in .title.sub-title (rather than .title .sub-title if the & is omitted).

&连接父类,产生.title。副标题(而不是.title . subtitle(如果省略了&))。

The result is that with the & it matches an element with both title and sub-title classes:

结果是&与标题类和子标题类匹配的元素:

whilst without the & it would match a descendent with class sub-title of an element with class title:

而如果没有&,则与带有类标题的元素的类副标题匹配:

...
...

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