user37421
0
Q:

text-align property in css

<switch>
    h1 {
    text-align: center;
}

p.date {
    text-align: right;
}

 
p.main {
    text-align: justify;
} 
</Switch>
4
p{
    text-align:center;/*values: center, left, right, etc...*/
}
4
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)
1
body {
  text-align: left;
}
1
text-align:inherit;
0

New to Communities?

Join the community