We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chrome live sass
变量以 $ 开头.
$
以下划线 _ 开头的文件可以作为分部文件, 通过 @import 导入, 在 scss 编译时会像 c++ 预处理 #include 在进行文件合并. (以减少普通 css @import 造成的 http 请求)
_
@import
scss
c++
#include
css
http
@minixs 是 scss 中代码复用的方法, 通过 @include 复用.
@minixs
@include
@extend 也可以复用代码, 它复用的是 css 选择器
@extend
scss 支持基本的算术操作符 +, - *, /, % 等.
+, - *, /, %
The text was updated successfully, but these errors were encountered:
No branches or pull requests
sass/scss 指南
why scss ?
chrome live sass
变量
变量以
$
开头.嵌套
分部文件, @import
以下划线
_
开头的文件可以作为分部文件, 通过@import
导入, 在scss
编译时会像c++
预处理#include
在进行文件合并. (以减少普通css
@import
造成的http
请求)@minixs, @include
@minixs
是scss
中代码复用的方法, 通过@include
复用.@extend
@extend
也可以复用代码, 它复用的是css
选择器运算符
scss
支持基本的算术操作符+, - *, /, %
等.The text was updated successfully, but these errors were encountered: