Please enable JavaScript.
Coggle requires JavaScript to display documents.
SCSS - Coggle Diagram
SCSS
Variables
types
strings
numbers
colors
booleans
lists
nulls
$variablename: value;
Name:
$fontsize: value1;
$myFontsize: value2;
Import and Partials
import
filename;
_filename;
mixin
and
include
mixin
directive lets you create CSS code
mixin
name {
property: value;
...
}
minxin with variable
mixin include mixin from same file or other file
include
let you use (include) the mixin
Nested Rules
extend and Inheritance