Tip: Tips for implementing automatic line feed in CSS

Source: Internet
Author: User

What are the tips for css auto-wrapping? We all know that continuous English or numbers can be large containers and cannot be automatically wrapped according to the container size. Below is how CSS wrap them!
We all know that continuous English or numbers can be large containers and cannot be automatically wrapped according to the container size. Below is how CSS wrap them!
For div
1. (ie browser) white-space: normal; word-break: break-all; the former follows the standard.

The code is as follows: Copy code
# Wrap {white-space: normal; width: 200px ;}
Or
# Wrap {word-break: break-all; width: 200px ;}
<Div id = "wrap"> ddd1111111111111111111111111111111111 </div>

Effect: line breaks can be implemented.
2. (Firefox) white-space: normal; word-break: break-all; overflow: hidden; the same FF does not have a good implementation method. You can only hide or add a scroll bar, of course, it is better to not add a scroll bar!

The code is as follows: Copy code
# Wrap {white-space: normal; width: 200px; overflow: auto ;}
Or
# Wrap {word-break: break-all; width: 200px; overflow: auto ;}
<Div id = "wrap"> ddd11111111111111111111111111111111111111111111 </div>

Effect: The container is normal and the content is hidden.
For table
1. (ie browser) use the style table-layout: fixed;

The code is as follows: Copy code
<Style>
. Tb {table-layout: fixed}
</Style>
<Table class = "tbl" width = "80">
<Tr> <td>
Abcdefghigklmnopqrstuvwxyz 1234567890
</Td> </tr>
</Table>

Effect: line breaks are supported.
2. (ie browser) use styles

The code is as follows: Copy code
<Style>
. Tb {table-layout: fixed}
</Style>
<Table class = "tb" width = "80"> <tr> <td nowrap>
Abcdefghigklmnopqrstuvwxyz 1234567890
</Td> </tr>
</Table>

Effect: line breaks are supported.
3. (ie browser) use the style table-layout: fixed and nowrap when the percentage is fixed to the td size.

The code is as follows: Copy code
<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>
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.