0
How to center a paragraph in HTML?
How to align to the center? I have tried and sometimes it works and sometimes it doesn't. What attribute should I use and how?
2 Answers
0
Something like this?
<p align="center">WORDS</p>
0
For centering paragraph text in center
text-align:center;
For centering whole paragraph tag
margin:0 auto;