hi, I want to know if there is a way to break long words (or continuous text without spaces) into css. For example, a word with 200 characters overflows the width of a box, so I need to break it. The way I solve this is to define a max number of characters for any word, so that this max don't overflow the box width. If a word is longer than the max I divide into two words and put a <br/> tag in between. Maybe there is a more elegant way to do this..maybe in css
is there a better way to solve this, in css perhaps?