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>
|