首页htmlwhite_spaceCSS Property Value - 如何white-space:pre;

CSS Property Value - 如何white-space:pre;

我们想知道如何white-space:pre;


<html>

<head>
  
  <style>
.pre {white-space:pre;}
.nowrap {white-space:nowrap;}

  </style>
</head>

<body>
<h1>white-space</h1>
<p class="normal">Here is some text inside a 
paragraph designed to test the 
white-space property of CSS.</p>
<p class="pre">  Here 
    is 
      some 
         text inside a paragraph 
designed to test the white-space property of
            C   S   S. </p>

<p class="nowrap">Here is some text inside a paragraph designed to test the white-space property of CSS. Here is some text inside a paragraph designed to test the white-space property of CSS.</p>
</body>
</html>