place div in center of of div code example
Example 1: how to center text in css
.class {
text-align: center;
}
Example 2: how to horizontal center a div in css
#inner {
width: 50%;
margin: 0 auto;
}
.class {
text-align: center;
}
#inner {
width: 50%;
margin: 0 auto;
}