reading-notes

🗒️ Class 08: CSS Layouts

Learn CSS - Flexbox

CSS Layout - Flexbox

Lecture Notes

Prototypal Inheritence

An object inherited by every other object created by a constructor.

function Constructor1(arg){ this.arg = arg; }

function Constructor2(arg1, arg2, arg3){ Constructor1.call(this, arg3) this.arg1 = arg1; this.arg2 = arg2;

}

Flex Boxes

used to create responsive row/column layouts

align items is on the opposite axis justify-content is on the same axis