Alinear el texto en el bloque como en la palabra CSS
p {
text-align: justify;
}
p:not(:last-child):after {
content: "";
display: inline-block;
width: 100%;
}
Adam Kurek