vertical align elements css code example
Example 1: vertical align css
/*
For a flexed item you can you align - items to center content vertically
you can use justify content to center horizontally
*/
.container {
display: flex;
align-items: center;
justify-content: center;
}
Example 2: vertical align css
.container{
display: table;
}
.div-inside-container{
display: table-cell;
vertical-align: middle;
}