Flexbox Vertical Align Center Code Example


Example 1: css flex vertical align


/* Answer to: "css flex vertical align" */

.box {
display: flex;
align-items: center; /* Vertical */
justify-content: center; /* Horizontal */
}

.box div {
width: 100px;
height: 100px;
}

/*
For more information go to:
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/Aligning_Items_in_a_Flex_Container
*/

Example 2: flexbox align center vertically


.Aligner {
display: flex;
align-items: center;
justify-content: center;
}

.Aligner-item {
max-width: 50%;
}

.Aligner-item--top {
align-self: flex-start;
}

.Aligner-item--bottom {
align-self: flex-end;
}

Example 3: flex align top css


align-items: flex-start | flex-end | center | baseline | stretch

.container
{
display: flex;
align-items: flex-start;
}

Example 4: css vertical align with flexbox


<div class="align-vertically">
I am vertically centered!
</div>


/*Css */

.align-vertically {
background: #13b5ea;
color: #fff;
display: flex;
align-items: center;
height: 200px;
}

Example 5: display flex vertical align center css


justify-content: center; /* Horizontal */

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable