how to align text to the center of a div code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: how to horizontal center a div in css
#inner {
width: 50%;
margin: 0 auto;
}
Example 3: centering horizontally
div.center{display:block;margin:auto;width:50%;}
p.center{text-align:center;}