0
guys how do i make an indent after <p>??
2 Réponses
+ 3
For individual paragraphs you could utilize the following:
<p style="margin-left: 25px"> with the "px" referring to pixels.
For multiple paragraphs I would utilize a CSS file and set the property as such:
p {
text-indent: 25px;
}
Hope this helps! :-D
0
tnx that helps a lot