css flex column code example

Example 1: display flex column

.container {
	display: flex;
	flex-direction: column;
}

Example 2: flex css end

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

Example 3: css flex column

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

Example 4: 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 5: flexbox css

.container {
  align-content: flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline + ... safe | unsafe;
}

Example 6: flexbox css

.container {
  flex-flow: column wrap;
}

Tags:

Css Example