The white-space property declares how whitespace inside the element is handled.
ソースを見てください、空白文字の扱いを指定します。normal, pre, nowrap とあります。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<META http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<META http-equiv="Content-Style-Type" content="text/css">
<title>TIPS039 空白文字の扱いを変える</title>
<style type="text/css">
<!--
body { background-color: #FFA; }
h1 { color: red; font: bold 2em 'Courier New';
white-space: pre; }
p.p1 { color: #66E; font: 1.5em Verdana;
white-space: nowrap; }
-->
</style>
</head>
<body>
<h1 lang="en">Cascading
Style
Sheets (^-^)/</h1>
<p class="p1">The white-space property declares how whitespace inside the element is handled.</p>
<P><BR>
ソースを見てください、空白文字の扱いを指定します。normal, pre, nowrap とあります。</P>
</body>
</html>