Skip to content

Harrylawal74/Photo-Gallery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Flexbox is a one-dimensional CSS layout that can control the way items are spaced out and aligned within a container.

Flexbox has a main and cross axis. The main axis is defined by the flex-direction property, which has four possible values:

  1. row (default): horizontal axis with flex items from left to right

  2. row-reverse: horizontal axis with flex items from right to left

  3. column: vertical axis with flex items from top to bottom

  4. column-reverse: vertical axis with flex items from bottom to top