热门标签 | HotTags
当前位置:  开发笔记 > 后端 > 正文

SCSS/SASS方式说“这个班级和里面的一切”-SCSS/SASSwaytosay'thisclassandeverythinginside'

InnormalCSSicansay在普通的CSS我可以说.divclass*{something}andthisappliestoeverythingINSIDE

In normal CSS i can say

在普通的CSS我可以说

.divclass * {something}

and this applies to everything INSIDE divclass, but not divclass itself.

这适用于INSIDE divclass的所有内容,但不适用于divclass本身。

Is there is a shortcut in SASS to do this (Divclass AND everything inside too)?

在SASS中有一个快捷方式可以做到这一点(Divclass和里面的所有东西)?

1 个解决方案

#1


3  

The most efficient way to write that is like this:

最有效的写法是这样的:

.divclass {
    &, * {
        // styles
    }
}

Compiles to:

.divclass, .divclass * {
    // styles
}

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