CSS
css is the langauges used by browser to style html elements.
.foo { // selector declaration block
color: red;
//^^^^^ declaration
font-size: 12pt;
//property: value
}
taken from FrontEnd Masters Sass Fundamentals by Mike North
Conventions​
BEM - Block Element Modifier
- simple convention for naming css classes in order to easily work with across developers
CSS In JS​
It seems like so far these libraries cannot be code splitted and is loaded all at once using
<style/>
tags ref