CSS force-wrapping CSS force-do-not-wrap CSS Method

Source: Internet
Author: User

Previously, we summarized the line feed and CSS writing without line feed for div. However, if a table cell knows only one attribute of nowrap, it will not wrap.

This is required recently, but it is found that nowrap will still wrap in some cases! Helpless, isn't there a way to force line breaks?

Baidu gave me a bit of relief and found a solution to the problem.

Use CSS to automatically wrap or not wrap table cell data

1. Automatic line feed:<Br/> <style type = "text/CSS">. autonewline {word-break: Break-all; /* required */} </style> <Table> <tr> <TD class = "autonewline"> automatic line feed, automatic line feed automatic newline, automatic newline, automatic newline </TD> </tr> </table> <p>
[Ctrl + A select all Note: If you need to introduce external JS, You need to refresh it to execute]

2. Do not wrap:CopyCodeThe Code is as follows: <style type = "text/CSS">
. Nonewline
{
Word-break: Keep-all;/* required */
}
</Style>

<Table>
<Tr>
<TD class = "nonewline"> no line breaks, no line breaks </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.