flex column example
Example 1: display flex column
.container {
display: flex;
flex-direction: column;
}
Example 2: css flex column
.container {
flex-direction: row | row-reverse | column | column-reverse;
}
Example 3: flex box in css
<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: what is the flex box
flexbox definition