I need the text to be displayed in a neat box with multiple lines breaking and wrapping. The content is not a simple string, but rather individual characters joined together like this: <span>L</span>
Even after attempting different CSS styles, I ended up with the undesired result shown on the left...
body {
font-family: monospace;
width: 200px;
word-wrap: break-word;
display: inline-block;
}
Trying out text-align: justify;
didn't provide any solution either.