overflow-wrap
property is applied to inline elements.break-word
value, the property allows you to insert a line break into a very long word if it does not fit into the container.<div class="block"> <span class="text"> VeryVeryVeryVeryVeryVeryVeryVeryVeryLongWord1 </span> <span class="text"> VeryVeryVeryVeryVeryVeryVeryVeryVeryLongWord2 </span> </div>
.block { border: 1px solid black; width: 100px; font-size: 20px; display: flex; overflow: hidden; } .text { overflow-wrap: break-word; }