How to make a long article wrap automatically when making the article System

Source: Internet
Author: User

Do ArticleHow to make long articles wrap automatically in the system
This problem has been mentioned by many people. According to the solution on the Internet, the English words are broken up with new lines.

For most online articles, you only need to add the following content to CSS:
Table {
Table-layout: fixed;
Word-break: Break-all;
Word-wrap: Break-word;
}
Div {
Word-break: Break-all;
Word-wrap: Break-word;
}

We can solve the problem of broken tables and layers. At first, I did the same. HoweverCodeIt may cause a problem. You will find that all the English words are truncated, which is not in line with the English writing habits and is not conducive to reading.
Later, I found that the above Code can be rewritten to prevent both table/layer cracking and word breaking.
As follows:
Table {
Table-layout: fixed;
Word-wrap: Break-word;
}
Div {
Word-wrap: Break-word;
}

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.