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 3 years have passed since last update.

【CSS】文字装飾

Last updated at Posted at 2020-07-29

文字の間隔をあける

p {
    letter-spacing: 0.1em
}

おすすめは0.05em~0.1em)

文字に下線を引く

P { 
  text-decoration: underline
}

色々な種類の下線がある
https://saruwakakun.com/html-css/reference/border

取り消し線

P { 
  text-decoration: line-through
}

線で囲む

P {
   border: solid 線の太さ  
}

borderの後に、線の種類・線の太さ・色を指定する

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?