how to move in the center horizontally css code example
Example 1: center div horizontally
/* margin auto does the magic, make sure to provide width less than 100% */
.center {
margin: auto;
width: 400px;
}
.center {
margin: auto;
width: 50%;
}
Example 2: centering horizontally
div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}