Home  >  Article  >  Web Front-end  >  How to use word-break attribute

How to use word-break attribute

青灯夜游
青灯夜游Original
2019-02-11 15:17:196519browse

The word-break attribute is used to specify line breaking rules for non-CJK (Chinese, Japanese, and Korean) scripts, and specifies the processing method for automatic line wrapping. By using the word-break attribute, you can let the browser break a line at any position.

How to use word-break attribute

CSS3 word-break attribute

Function:word-break attribute Specifies how to handle automatic line wrapping.

Tips: By using the word-break attribute, you can allow the browser to break a line at any position.

Syntax:

word-break: normal|break-all|keep-all;

normal: Use the browser’s default line wrapping rules.

break-all: Allow line breaks within words.

keep-all: Line breaks can only be made at half-width spaces or hyphens.​

Note: All major browsers support the word-break attribute. But Opera does not support the word-break attribute.

CSS3 Example of using the word-break attribute

<!DOCTYPE html>
<html>
<head>
<style> 
p.test1
{
width:11em; 
border:1px solid #000000;
word-break:keep-all;
}
p.test2
{
width:11em; 
border:1px solid #000000;
word-break:break-all;
}
p.test3
{
width:11em; 
border:1px solid #000000;
word-break:keep-all;
}
p.test4
{
width:11em; 
border:1px solid #000000;
word-break:break-all;
}
</style>
</head>
<body>
<p class="test1">This is a veryveryveryveryveryveryveryveryveryvery long paragraph.</p>
<p class="test2">This is a veryveryveryveryveryveryveryveryveryvery long paragraph.</p>
<p class="test3">This paragraph contains some text: The lines will break at any character.</p>
<p class="test4">This paragraph contains some text: The lines will break at any character.</p>
</body>
</html>

Rendering:

How to use word-break attribute

Reference for this article: https://www.html.cn/book/css/properties/text/word-break.htm

The above is the detailed content of How to use word-break attribute. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn