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編 CSSの書き方

Posted at

CSSの書き方について

まずCSSを書く前にファイル名の後ろは.cssと書いて下ださい。これでCSSファイルが作成できました。

では本題に入ります、CSSファイルの先頭は@charset "UTF-8"と書いてください。(書かなくても文字化けにならないかもしれないですが、
一応書いといてください。)

書き方は
Pタグにクラス名がある場合は以下のようになります

.Ptag {
//この中に処理を書く
}

IDがある場合は以下の感じです。

#Ptag {
//処理内容を書く
}

クラスもIDも指定してないときはそのままのセレクターを書くようにしましょう。

p {
//処理を書く
}
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?