text align left code example
Example 1: center text in css
.class {
text-align: center;
}
Example 2: html align text right
<p style="text-align: right;"> Right alignment </p>
Example 3: css text align justify
div {
text-align: justify;
text-justify: inter-word;
}
Example 4: css text align center
body {
text-align: center;
}
Example 5: css text align right
body {
text-align: right;
}
Example 6: css text align left
body {
text-align: left;
}