How to align a div in center?

While aligning the div we have problem to aligning a div in center. Using margin according to page and then readjustment is cumbersome and not an efficient method.

Instead use below code in your CSS:-

<div class="center"></div>

<style>
.center
{
    margin-left:auto;
    margin-right:auto;
}

</style>