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