+ 1
css
what is the text align? how about in the css?
2 Answers
+ 4
text-align in css is used for aligning the inner content of a block element.
eg:
p{
text-align:center;
} //here, text inside the paragraph will be centered.
https://www.sololearn.com/learn/CSS/1090/
+ 2
Thanks dear.