css| Skills | Web page
We all know that the continuous English or digital can be the container is propped up, can not be based on the size of the container to automatically wrap, the following is how the CSS will be their line-wrapping Method!
for Div
1. (ie browser) white-space:normal; Word-break:break-all, where the former is to follow the standard.
#wrap {white-space:normal; width:200px;}
Or
#wrap {word-break:break-all;width:200px;}
eg.
<div id= "Wrap" >ddd1111111111111111111111111111111111</div>
Effect: You can implement line wrapping
2. (Firefox browser) white-space:normal Word-break:break-all;overflow:hidden; the same FF is not a good way to implement, can only hide or add scroll bar, Of course, do not add the scroll bar effect better!
#wrap {white-space:normal; width:200px; overflow:auto;}
Or
#wrap {word-break:break-all;width:200px; overflow:auto;}
eg.
<div id= "Wrap" >ddd1111111111111111111111111111111111111111</div>
Effect: Container normal, content hidden
for Table
1. (ie browser) use style table-layout:fixed;
eg.
<style>
. tb{table-layout:fixed}
</style>
<table class= "tbl" width= ">"
<tr>
<TD>ABCDEFGHIGKLMNOPQRSTUVWXYZ 1234567890
</td>
</tr>
</table>
Effect: You can change lines
2. (ie browser) use style table-layout:fixed and nowrap
eg.
<style>
. TB {table-layout:fixed}
</style>
<table class= "TB" width= ">"
<tr>
<TD nowrap>abcdefghigklmnopqrstuvwxyz 1234567890
</td>
</tr>
</table>
Effect: You can change lines
3. (ie browser) using a percentage fixed TD size case use style table-layout:fixed and nowrap
<style>
. tb{table-layout:fixed}
</style>
<table class= "TB" width=80>
<tr>
<TD width=25% nowrap>abcdefghigklmnopqrstuvwxyz 1234567890
</td>
<TD nowrap>abcdefghigklmnopqrstuvwxyz 1234567890
</td>
</tr>
</table>
Effect: Two TD all normal line change
3. (Firefox browser) using a percentage fixed TD size case use style table-layout:fixed and nowrap, and use div
eg.
<style>
. TB {table-layout:fixed}
. td {Overflow:hidden;}
</style>
<table CLASS=TB width=80>
<tr>
<TD width=25% CLASS=TD nowrap>
<DIV>ABCDEFGHIGKLMNOPQRSTUVWXYZ 1234567890</div>
</td>
<TD CLASS=TD nowrap>
<DIV>ABCDEFGHIGKLMNOPQRSTUVWXYZ 1234567890</div>
</td>
</tr>
</table>
Here the cell width must be defined in percent
Effect: normal display, but can not wrap (note: Under FF has not been able to make the container content of a good way, can only use overflow will be more out of the content to hide, so as not to affect the overall effect)