text align using css code example

Example 1: css text align center

/* Character-based alignment in a table column */

text-align: center;

/* The inline contents are centered within the line box. */

Example 2: text-align css

.p{
text-align:center;
}
<div class="p">
<p style="text-align:center">HELLO</p>
</div>

Example 3: text align css

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

Example 4: 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:

Css Example