flex horizontal code example

Example 1: css flex center

display: flex;
align-items: center;
justify-content: center;

Example 2: space between flexbox

justify-content: space-between;

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

Please read flexbox & grid in CSS TRIX, 
make hands-on project watching (WESBOS videos - it's really useful)
also try [FLEXBOX - froggy] and [GRID - garden] games

Tags:

Misc Example