guys how do i make an indent after <p>?? | Sololearn: Learn to code for FREE!
Новый курс! Каждый программист должен знать генеративный ИИ!
Попробуйте бесплатный урок
0

guys how do i make an indent after <p>??

23rd Sep 2016, 10:27 AM
Neil Lactawan Caneda
Neil Lactawan Caneda - avatar
2 ответов
+ 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
23rd Sep 2016, 1:18 PM
Christopher Elliott
Christopher Elliott - avatar
0
tnx that helps a lot
23rd Sep 2016, 1:30 PM
Neil Lactawan Caneda
Neil Lactawan Caneda - avatar