How to align a div in center?

{ // deep_execution_view
const authorName = "Aman Agrawal";
//
const publishDate = "July 4, 2015";

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> 

 
}