container elements in the center of a page code example
Example 1: keeping elements of container in center
.container {
margin : 0 auto;
}
Example 2: how to put container in center of page
#container
{
width: 400px;
margin-left: auto;
margin-right: auto;
}