1

When I make some horizontally centered text on my website, when the text wraps, it looks like this: enter image description here

But I want this text to be distributed evenly, like this:

enter image description here

How can I achieve this in a manner suitable for responsive web design?

TrevLev
  • 109
  • 3
  • 11

1 Answers1

0

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.

Helper
  • 776
  • 7
  • 17
BOLTz
  • 1
  • 3
  • The `
    ` tag is not suitable for responsive web design where screen size is not consistent. The text is already centered, and changing it to justified wouldn't do anything to fix the problem.
    – TrevLev Sep 29 '20 at 17:40