CSS Flashcards

1
Q

SASS

A

Syntactically Awesome Style Sheets. CSS Preprocessor. An extension of CSS3 adding variables, nested rules, mixins, selector inheritance, and more.

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

SCSS

A

Sassy CSS, one of two syntaxes for SASS. Favors indentation over brackets and semicolons.

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

HAML

A

HTML Abstraction Markup Language. Favors indentation over brackets and semicolons. Terse. HAML is Ruby-centric. “login.html.haml”

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

ERB

A

Embedded Ruby. Rails will evaluate the Ruby content, add to the HTML dynamically, and output a pure HTML file. “login.html.erb”

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

{less}

A

CSS Preprocessor. Extends CSS to support variables, mixins, functions, and more. Less runs in Node, any browser, and in Rhino.

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

Selector

A

Patterns used to select HTML elements to style

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

Mixin

A

A CSS element that allows document authors to define property/value pairs that can be reused in other rulesets.

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

EEE

A

Shorthand color code for #EEEEEE. Likewise, #DDD is #DDDDDD and so on…

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