Выровнять текст в блоке, как в Word CSS
p {
text-align: justify;
}
p:not(:last-child):after {
content: "";
display: inline-block;
width: 100%;
}
Adam Kurek
p {
text-align: justify;
}
p:not(:last-child):after {
content: "";
display: inline-block;
width: 100%;
}