0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【CSS】文字の間隔

Posted at

letter-spacing

:sunny: 文字の間隔を指定

例.html
    <p>あいうえお</p>

通常だとこのとおり

スクリーンショット 2019-12-30 0.41.01.png

CSSを適用すると・・・

例.css
p {
  letter-spacing: 20px;
}
スクリーンショット 2019-12-30 0.43.27.png

文字間隔が広がりました:smile:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?