「css」letter-spacingプロパティで文字の間隔を指定する

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

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

 

CSS

Posted by arkgame