JSFiddle - React, Tailwind, and code Playground
by Blanca B
HTML
<p id="p1">Con text-indent podemos indentar el texto</p>
<p id="p2">Con text-indent podemos indentar el texto</p>
<p id="p3">Con text-indent podemos indentar el texto y si es un párrafo entero que ocupa varias líneas, nos indenta todo el párrafo, no solamente la primera línea en plan periódico</p>
CSS
#p1 {
text-indent: 10px;
}
#p2 {
text-indent: 15px;
}
#p3 {
text-indent: 20px;
}