Xah Lee, 2005-11, 2010-10, 2011-02-19
This article explains how to control the text wrapping in HTML/CSS.
CSS2 provides the several ways to control text wrapping. The wrapping attribute is “white-space”. How the line wraps depends on its value. The default value for “p” and “div” tags is “normal”.
<p style="white-space:normal">…</p>
This is the normal behavior of the paragraph tag <p>.
Note that white spaces are any of space, tab, and
newline characters. You can always use <br> tag to force a line break in display.
<p style="white-space:pre">…</p>
With white-space: pre, the behavior is the same as the <pre> tag.
pre is best used for showing computer program code, or poetry of short lines.
<p style="white-space:pre-wrap; width:60ex">…</p>
With white-space:pre-wrap, it's like mix of pre, and normal.
This is very useful for computer code, even better than pre, because if you have a long line comment, it'll be wrapped in the display, but when user copies the code, there will not be extra newline. For example:
# Here is a very long comment. long long long long long long long long long long long long long long long long long long long long long long long long long long long long long long print 5
This is just like pre-wrap, except that repeated spaces are shrinked into just one space.
<p style="white-space:nowrap; width:60ex">…</p>
A common way to control wrap for paragraphs is simply to use the “width”. Like this:
<p style="width:60ex">…</p>
That will limit the width to 60 “ex” unit. A “ex” unit is basically the height of the lowercase letter “x”. (note that this does not guarantee that your paragraph will have 60 characters per line, but usually slightly more. Exactly how many characters per line with width:60ex depends on the font used.)
You can always force a line break by using <br>.
To prevent a line wrap at positions you do not want to happen, use the unicode character
named NO-BREAK SPACE “ ”. Its decimal value is 160, hex is A0. The html entity is .
CSS3 introduced several ways to control line breakes and white space.
One of the new feature is
word-wrap:break-word. It breaks a word into separate lines.
See:
http://www.w3.org/TR/2010/WD-css3-text-20101005/.
Thanks to Dave for mentioning this.
blog comments powered by Disqus