Automatic line-wrapping problem, the normal character of the line is more reasonable, and continuous numbers and English characters will often be large containers, quite a headache, the following is a CSS how to implement the method of line-wrapping
For block-level elements such as div,p, the wrapping (Asian and non-Asian text) elements have the default White-space:normal, and the HTML is automatically wrapped when the width is defined
<div id= "Wrap" > Normal text Wrapping (Asian and non-Asian text) elements have the default white-space:normal, when defined </div>
Css
#wrap {white-space:normal; width:200px;}
1. (ie browser) consecutive English characters and Arabic numerals, using Word-wrap:break-word or Word-break:break-all;
#wrap {word-break:break-all; width:200px;}
Or
#wrap {word-wrap:break-word; width:200px;}
<div id= "Wrap" >abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
Effect: You can implement line wrapping
2. (Firefox browser) consecutive English characters and Arabic numerals break, all versions of Firefox did not solve this problem, we have to let go beyond the bounds of the characters hidden or, add a scroll bar to the container
Firefox3.6 test can use Word-wrap:break-word to force a newline, but Word-break:break-all is still invalid
#wrap {word-break:break-all; width:200px; overflow:auto;}
<div id= "Wrap" >abcdefghijklmnabcdefghijklmnabcdefghijklmn111111111</div>
Effect: Container normal, content hidden
For table
1. (ie browser) use table-layout:fixed; Force table width, superfluous content hide
<table style= "table-layout:fixed" width= ">"
<tr>
<td>abcdefghigklmnopqrstuvwxyz1234567890ssssssssssssss
</td>
</tr>
</table>
Effects: Hide Unwanted content
2. (ie browser) use table-layout:fixed; Force table width, inner td,th use word-break:break-all; or word-wrap:break-word; line-Wrapping
<table width= "style=" table-layout:fixed; >
<tr>
<TD width= "25%" style= "Word-break:break-all; ">abcdefghigklmnopqrstuvwxyz 1234567890
</td>
<TD style= "Word-wrap:break-word;" >ABCDEFGHIGKLMNOPQRSTUVWXYZ 1234567890
</td>
</tr>
</table>
Effect: You can change lines
3. (ie browser) in the td,th nested div,p, etc. using the above mentioned Div,p line-wrapping method