View on GitHub

reading-notes

CodeFellows Class Reading Notes

Javascript Templating Language and Engine— Mustache.js with Node and Express

Javascript Templating: fast and efficient technique to render client-side view templatees with Javascript by using a JSON data source

Mustache: logic-less template syntax that works by expanding tags in a template using values provided in a hash or object. Not a templating engine, it is a specification for a templating language


A Complete Guide to Flexbox

Flexbox provides a more efficient way to lay out, align and distribute space among items in a container

The container element must be set to display: flex; for flexbox properties to be applied to the items within the container

This site lists varies properties available for both the parent and children elements, including visual depictions and written descriptions of how each property functions - a very useful reference site when working with flexbox in CSS.


Flexbox Froggy

Flexbox Froggy is a fun and interactive way to practice flexbox css selectors. There are 24 levels available to play through.


Home