「css」word-spacingプロパティで単語の間隔を指定する

2021年8月18日

書式
word-spacing: 数値 + 単位
使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<style>
.cft {
/* 15pxを指定 */
word-spacing: 15px;
border: 1px solid #000;
width: 300px;
height: 40px;
background: SkyBlue;
}
</style>
<div class="cft">単語 の 間隔 15px です</div>
<style> .cft { /* 15pxを指定 */ word-spacing: 15px; border: 1px solid #000; width: 300px; height: 40px; background: SkyBlue; } </style> <div class="cft">単語 の 間隔 15px です</div>
<style>
  .cft {
   /* 15pxを指定 */
    word-spacing: 15px;
    border: 1px solid #000;
    width: 300px;
    height: 40px;
    background: SkyBlue;
  }
</style>
<div class="cft">単語 の 間隔 15px です</div>

 

CSS

Posted by arkgame