sfeuz
0
Q:

flexbox css

Flexbox properties:
1.flex-direction
2.flex-wrap
3.flex-flow
4.justify-content
5.align-items
6.align-content
22
div {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
1
/* use this if you want to center stuff like in your div */
.flexbox_card {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
7
.container {
  align-content: flex-start | flex-end | center | space-between | space-around | space-evenly | stretch | start | end | baseline | first baseline | last baseline + ... safe | unsafe;
}
3
.container {
  justify-content: flex-start | flex-end | center | space-between | space-around | space-evenly | start | end | left | right ... + safe | unsafe;
}
1
<!--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>
2
.container {
  flex-flow: column wrap;
}
1
.container {
	display: flex;
}

Anything within the container that is a block level element is
now turned into an inline element only taking up the space of 
its actual content placing all items side by side instead on
individual rows.
5
.container {
  flex-direction: row | row-reverse | column | column-reverse;
}
0

New to Communities?

Join the community