Use word-wrap Property to allow Line Breaks in the Middle of Words
By Stephen Bucaro
If a long word is in a containing element that has a set width, since the word has
no convienent spaces for a natural line break, the word will extend outside the
containing element as shown below.
Pneumonoultramicroscopicsilicovolcanoconiosis is a lung disease caused by inhaling very fine ash and sand dust.
To allow line breaks in the middle of words, add the CSS word-wrap property and
set its value to break-word. An example of the code for this is shown below:
<div style="width:200px; border:1px solid #000000; word-wrap:break-word;">
Pneumonoultramicroscopicsilicovolcanoconiosis is a lung disease caused by inhaling very fine ash and sand dust.
The default value of the word-wrap property is normal.
More CSS Quick Reference: • Define CSS Rollover Effects • Set List Bullets Position • Set a Background Image • position:absolute • Set the Font Boldness • Set the Text Color • Set an Element's Display Property • Set the Type of Bullet Used in List • Class Selector • Set the Font Properties
|