In this tutorial will learn how to center div,span or any element horizontally 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 Horizontally centered.

horizontal align
horizontal align center

So, lets start with css,

CSS


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

By applying position relative , left and transform we can easily align horizontally centered.

See full code with HTML & CSS

HTML & CSS

Div Align Horizontally 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.

4 Comments

Leave a Reply

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