Answers for "center without flex"

1

how to center an item without flex

.container{
position: relative;
}
.child{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, 50%);
}
Posted by: Guest on September-06-2021
8

flex force div right side

.parent {
  display: flex;
}
.child {
  margin-left: auto;
  order: 2;
}
Posted by: Guest on April-16-2020
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

Browse Popular Code Answers by Language