SASS Flashcards

1
Q

Variables

A

Reusable styling syntax. Declared variables can be placed as values for css declarations that will convert during pre-processing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Variable syntax

A

$font-stack: Helvetica, sans-serif;

$primary-color: #333;

body {

font: 100% $font-stack;
color: $primary-color;

}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly