text align left css code example

Example 1: text align justify

text-align: justify;

Example 2: text align css

p{
    text-align:center;/*values: center, left, right, etc...*/
}

Example 3: text align center

text-align: center;

Example 4: css text align right

body {
  text-align: right;
}

Example 5: css text align left

body {
  text-align: left;
}

Example 6: text-align property in css

The different values of text-align are -
1) text-align: justify; (spreads throughout to the left and right)
2) text-align: center; (centers the text)
3) text-align: left; (the default value, shifts the text to left side)
4) text-align: right; (shifts the text to right side)

Tags:

Html Example