Wyrównaj tekst w bloku, jak w Word CSS

p {
  text-align: justify;
}

p:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 100%;
}
Adam Kurek