Currently, I am working on a project using HTML and CSS with the text-align: justify property. However, I have encountered an issue where there is a significant gap between words on the second line of the text below. Everything else seems to be working perfectly fine.
<p style="text-align: justify;">Lorem Ipsum is simply dummy text of the <a href="http://example.com"> example </a>and Lorem Ipsum is simply dummy text of the lorem. I'm also printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic </p>
On the second line of this text, there are several extra spaces between each word. How can I go about fixing this issue? The desired format should look like:
Lorem Ipsum is simply dummy text of the Lorem Lorem Lorem Lorem Lorem
text of the lorem. I'm also printing and typesetting industry.
Lorem Ipsum has been
Any advice would be greatly appreciated.