Course Content
Introduction
Introduction to CSS course
0/1
CSS Syntax
0/1
CSS Selectors
0/1
CSS Unit of Measurements
CSS units are used to specify measurements for various properties such as length, width, margin, padding, font size, and more.
0/1
CSS Colors
CSS provides various ways to specify colors.
0/2
CSS Properties And Values
0/1
CSS Background
0/1
CSS Box Model
0/1
CSS Display
CSS display property is used to control how an element is displayed on the webpage.
0/3
Typography and Font Properties
0/1
CSS Display And Positioning
0/2
Responsive Design with CSS Media Queries
0/1
About Lesson

Flex Architecture:

Reference: image taken from FreeCodeCamp

 

Justify-Content:

 

Flex direction demo:

 

 

Align-content:

Specifies how flex items are distributed along the cross axis of the flex container. Similar to Justify-content.

Align-items:

Flex-wrap:

Flex-flow:

Place-content:

Align-self:

Flex-grow:

Flex-shrink:

Flex-basis:

Flex

FLEX SHORTHAND PROPERTIES

Flex: flex-grow flex-shrink flex-basis

eg:  flex: 4 2 50em;

Flex-flow: flex-direction flex-wrap

Flex-flow : row wrap;

 

Place-content: align-content justify-content

eg: place-content: center flex-end;