I am struggling with displaying words without spaces in a div
or span
with limited width.
https://i.sstatic.net/tuPyW.jpg
Below is the code snippet I am working with:
.abc {
width: 200px;
height: auto;
min-height: 100px;
background-color: blue
}
<div class="abc">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
</div>
I would like the output to look similar to this:
Thank you!