In this tutorial will learn how to center div,span or any element vertically using css3 in just few lines of code.

For align center we are using transform translate css property. see below image, you can see Main grey div in which one green div is align vertically centered.

vertical align center
vertical align center

So, lets start with css,

CSS


.Vertical-center {
position: relative;
top: 50%;
transform: translateY(-50%);
-moz-transform: translateY(-50%); /* For mozilla support */
-webkit-transform: translateY(-50%); /* For safari support */
-ms-transform: translateY(-50%); /* For IE support */
-o-transform: translateY(-50%); /* For opera support */
}

By applying position relative , top and transform we can easily align vertically centered.

See full code with HTML & CSS

HTML & CSS

Div Align vertically center

"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."

Hope this tutorial is helpful for you.

Leave a Reply

Your email address will not be published. Required fields are marked *