Answers for "make flex items take equal width"

CSS
1

flexbox apply same height to items

align-self: stretch;
Posted by: Guest on March-21-2022
1

how to make all the columns equal size with flexbox

flex: 1 1 0px
Posted by: Guest on April-15-2020
7

flex all child same width

.child {
	flex: 1;
}
Posted by: Guest on July-17-2020

Browse Popular Code Answers by Language