text-justify.css (224B)
1 .post-content p { 2 text-align: justify; 3 text-justify: inter-word; 4 } 5 6 @media (max-width: 600px) { 7 .post-content p { 8 hyphens: auto; 9 } 10 } 11 12 .no-justify { 13 text-align: initial; 14 text-justify: none; 15 hyphens: none; 16 }