css align text to right code example
Example 1: css text align justify
div {
text-align: justify;
text-justify: inter-word;
}
Example 2: css text align center
body {
text-align: center;
}
Example 3: css text align right
body {
text-align: right;
}
Example 4: css text align left
body {
text-align: left;
}