pep.
9
Q:

how to align text in css

div {
  text-align: justify;
  text-justify: inter-word;
}
6
<switch>
    h1 {
    text-align: center;
}

p.date {
    text-align: right;
}

 
p.main {
    text-align: justify;
} 
</Switch>
4
.class {
	text-align: center;
}
19
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: center;
}
0

    div.a {
  text-align: center;
}


    div.b {
  text-align: left;
}


    div.c {
  text-align: right;
}

div.c {
  text-align: 
    justify;
}  
4
text-align: center
4
body {
  text-align: right;
}
1

New to Communities?

Join the community