You can use the CSS property word-wrap:break-word;
, which will break words if they are too long for your span width.
span { _x000D_
display:block;_x000D_
width:150px;_x000D_
word-wrap:break-word;_x000D_
}
_x000D_
<span>VeryLongLongLongLongLongLongLongLongLongLongLongLongExample</span>
_x000D_