Answers for "align text in block like in word css"

CSS
0

align text in block like in word css

p {
  text-align: justify;
}

p:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 100%;
}
Posted by: Guest on April-28-2022

Browse Popular Code Answers by Language