I'm working with texts, reading what was typed by the user and saving in the subject variable. I would like, when the variable was called, its contents would be shown on the screen with justified alignment. But I have tried in some ways like:
echo "<div style='text-align: justify;'>".$assunto."</div>";
echo "<p align='justify'>".$assunto."</p>";
And I had no results. How can I do to show the contents of a variable with justified alignment?