[CSS] white-space プロパティの値pre-lineの使い方

2021年9月15日

構文
pre-line
連続するホワイトスペースは詰められて 1 つになります。行の折り返しは、改行文字や <br> 要素のあるときか、行ボックスを埋めるのに必要なときに行われます。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<style>
.cft {
border: 1px solid #000;
width: 150px;
height: 50px;
background: SkyBlue;
white-space: pre-line;
}
</style>
<p class="cft">AA test123 234567890</p>
<style> .cft { border: 1px solid #000; width: 150px; height: 50px; background: SkyBlue; white-space: pre-line; } </style> <p class="cft">AA test123 234567890</p>
<style>
  .cft {
    border: 1px solid #000;
    width: 150px;
    height: 50px;
    background: SkyBlue;
    white-space: pre-line;
  }
</style>
<p class="cft">AA     test123 234567890</p>

 

CSS

Posted by arkgame