style align center code example
Example 1: center with css
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Example 2: center text in css
.class {
text-align: center;
}
Example 3: css text align center
body {
text-align: center;
}
Example 4: align center css
margin: auto;
Example 5: text align justify
text-align: justify;
Example 6: align centre
.headerTwoDiv{
margin:1% auto;
margin-right: auto; margin-left: auto; width: 21%;
padding-top: 11px;
}