Answers for "css flex block element"

CSS
0

flex block reponsive

/* big screen */
.navigation {
	display: flex;
	flex-flow: row wrap;
	/* Aligne les items à end line sur main-axis */
	justify-content: flex-end;
}

/* medium  screen */
@media all and (max-width: 800px) {
	.navigation {
	/* on centre en répartissant l'espace entre les items */
	justify-content: space-around;
	}
}

/* little screen */
@media all and (max-width: 500px) {
	.navigation {
	/* On n'utilise plus row mais column */
	flex-direction: column;
	}
}
Posted by: Guest on April-18-2020
0

what is inline flex

flex and inline-flex both apply flex layout to children of the container. Container with display:flex behaves like a block-level element itself, while display:inline-flex makes the container behave like an inline element.
Posted by: Guest on December-30-2020

Browse Popular Code Answers by Language