When I make some horizontally centered text on my website, when the text wraps, it looks like this:
But I want this text to be distributed evenly, like this:
How can I achieve this in a manner suitable for responsive web design?
When I make some horizontally centered text on my website, when the text wraps, it looks like this:
But I want this text to be distributed evenly, like this:
How can I achieve this in a manner suitable for responsive web design?
You can use break tag.
<br/>
tags if you don't.
And if you do then just try increasing the font properties, as given below:
text-align: center;
text-align: justify;
This is going to work just as fine.