CSS skills: What is the difference between word-wrap and word-break?

Source: Internet
Author: User

Source: http://homepage.yesky.com/207/7707707.shtml

This article lists line breaks compatible with IE and ff.CSSRecommended style, detailed introductionWord-wrapSameWord-break.

Compatible with wrap CSS recommended styles for IE and FF

The best way is

 

The following is a reference clip:
Word-wrap: Break-word; overflow: hidden;

Instead

 

The following is a reference clip:
Word-wrap: Break-word; Word-break: Break-all;

Neither

 

The following is a reference clip:
Word-wrap: Break-word; overflow: auto;

There is no problem in IE. In ff, long strings of English will be overwritten.

Differences between word-wrap and word-break

Word-wrap:

Normal default. content exceeds the boundaries of its container.

Break-word content wraps to next line, and a word-break occurs when necessary. If necessary, the word-break is triggered.

Word-break:

Normal default. Allows line breaking within words. It seems to work only for Asian text.

Break-All behaves the same as normal for Asian text, yet allows the line to break arbitrarily for non-Asian text. this value is suited to Asian text that contains some excerpts of non-Asian text.

Keep-all does not allow word breaking for Chinese, Japanese, and Korean. functions the same way as normal for all non-Asian ages. this value is optimized for text that contains des small amounts of Chinese, Japanese, or Korean.

Summary:

Word-wrap controls line breaks.

When break-word is used, a line break is forced. There is no problem with Chinese and no problem with English statements. However, long strings do not work in English.

Break-word controls whether words are disconnected.

Normal is the default condition, and English words are not separated.

Break-all, which is a broken word. When a word reaches the boundary, the next letter automatically goes to the next line. It mainly solves the problem of long strings in English.

Keep-All refers to continuous Words in Chinese, Japanese, and Korean. That is to say, in this case, word-wrap is not used, and the Chinese text will not wrap. (The English statement is normal .)

IE:

Use Word-wrap: Break-word; all are normal.

FF:

If none of the two are used, Chinese will not cause any problems. There are no problems with English statements. However, long strings may cause problems in English.

To solve the problem of long strings in English, word-wrap: Break-word; Word-break: Break-all; is generally used ;. However, this method causes the words in Common English statements to be disconnected (also in IE ).

At present, the main problem is that long strings of English and English words are disconnected. In fact, long strings of English are just a long word.

That is, should an English word be disconnected? It is obvious that the problem should not be broken.

For long strings of English, it is malicious and you don't have to worry about it. However, we also need to find some way to prevent it from making the container large.

With: overflow: auto; ie, the long string is automatically folded. FF, the long string will be covered.

Therefore, in summary, the best way is word-wrap: Break-word; overflow: hidden; instead of word-wrap: Break-word; Word-break: Break-all ;.

Word-wrap: Break-word; overflow: auto; no problem in IE. In ff, long strings will be covered by some content.

In addition, testCodeAs follows:

1. htm

<Style>

. C1 {width: 300px; Border: 1px solid red}

. C2 {width: 300px; Word-wrap: Break-word; Border: 1px solid yellow}

. C3 {width: 300px; Word-wrap: Break-word; Word-break: Break-all; Border: 1px solid green}

. C4 {width: 300px; Word-wrap: Break-word; Word-break: Keep-all; Border: 1px solid blue}

. C5 {width: 300px; Word-break: Break-all; Border: 1px solid black}

. C6 {width: 300px; Word-break: Keep-all; Border: 1px solid red}

. C7 {width: 300px; Word-wrap: Break-word; overflow: auto; Border: 1px solid yellow}

</Style>

. C1 {width: 300px; Border: 1px solid red}

<Div class = "C1"> asdasd

</Div>

<Div class = C1>

This is all English.

</Div>

<Div class = C1>

It's all Chinese. It's all Chinese. It's all Chinese.

</Div>

<Div class = C1>

In Chinese and English. Chinese and English. Mixed Chinese and English. Chinese and English.

</Div>

<Br>

. C2 {width: 300px; Word-wrap: Break-word; Border: 1px solid yellow}

<Div class = "C2">

Safjaskflasjfklsajfklasjflksajflksjflkasjfksafj

</Div>

<Div class = c2>

This is all English.

</Div>

<Div class = c2>

It's all Chinese. It's all Chinese. It's all Chinese.

</Div>

<Div class = c2>

In Chinese and English. Chinese and English. Mixed Chinese and English. Chinese and English.

</Div>

<Br>

. C3 {width: 300px; Word-wrap: Break-word; Word-break: Break-all; Border: 1px solid green}

<Div class = "C3">

Safjaskflasjfklsajfklasjflksajflksjflkasjfksafj

</Div>

<Div class = C3>

This is all English.

</Div>

<Div class = C3>

It's all Chinese. It's all Chinese. It's all Chinese.

</Div>

<Div class = C3>

In Chinese and English. Chinese and English. Mixed Chinese and English. Chinese and English.

</Div>

<Br>

. C4 {width: 300px; Word-wrap: Break-word; Word-break: Keep-all; Border: 1px solid blue}

<Div class = "C4">

Safjaskflasjfklsajfklasjflksajflksjflkasjfksafj

</Div>

<Div class = C4>

This is all English.

</Div>

<Div class = C4>

It's all Chinese. It's all Chinese. It's all Chinese.

</Div>

<Div class = C4>

In Chinese and English. Chinese and English. Mixed Chinese and English. Chinese and English.

</Div>

<Br>

. C5 {width: 300px; Word-break: Break-all; Border: 1px solid black}

<Div class = "C5">

Safjaskflasjfklsajfklasjflksajflksjflkasjfksafj

</Div>

<Div class = C5>

This is all English.

</Div>

<Div class = C5>

It's all Chinese. It's all Chinese. It's all Chinese.

</Div>

<Div class = C5>

In Chinese and English. Chinese and English. Mixed Chinese and English. Chinese and English.

 

</Div>

<Br>

. C6 {width: 300px; Word-break: Keep-all; Border: 1px solid red}

<Div class = "C6">

Safjaskflasjfklsajfklasjflksajflksjflkasjfksafj

</Div>

<Div class = C6>

This is all English.

</Div>

<Div class = C6>

It's all Chinese. It's all Chinese. It's all Chinese.

</Div>

<Div class = C6>

In Chinese and English. Chinese and English. Mixed Chinese and English. Chinese and English.

</Div>

<Br>

. C7 {width: 300px; Word-wrap: Break-word; overflow: auto; Border: 1px solid yellow}

<Div class = "C7">

Safjaskflasjfklsajfklasjflksajflksjflkasjfksafj

</Div>

<Div class = C7>

This is all English.

</Div>

<Div class = C7>

It's all Chinese. It's all Chinese. It's all Chinese.

</Div>

<Div class = C7>

In Chinese and English. Chinese and English. Mixed Chinese and English. Chinese and English.

</Div>

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.