Container Flex code example

Example 1: css flexbox syntax

Display: flex 
Flex-direction: row | row-reverse | column | column-reverse
align-self: flex-start | flex-end | center | baseline | stretch
justify-content: start |  center | space-between | space-around | space-evenly

Example 2: flex css end

.item {
  align-self:flex-start | flex-end | center | baseline | stretch;
}

Example 3: flex box in css

<!--basic--flex--layout-->
<html>
	<head>
		<style>
			.parent{
              display:  flex or inline-flex;
              flex-direction: row  or column;
              flex-wrap: wrap or wrap-reverse;
 			}
		</style>
	</head>
	<body>
		<div class="parent">
			<div class="child-1"></div>
			.
			.
			.
		</div>
	</body>
</html>

Example 4: flexbox css

.container {
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}

Example 5: flexbox in css

.container {
  flex-direction: row | row-reverse | column | column-reverse;
}

Example 6: flexbox in css

flex-box by order
.item {
  order: 5; /* default is 0 */
}

Tags:

Css Example