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-08-08

#文字の色を指定する
文字の色を変えるにはcolorプロパティを用います。

style.css
h1 {
  color: #ff0000;
}

#文字の大きさを指定する
文字の大きさを指定するにはfont-sizeプロパティを用います。
font-sizeは、px(ピクセル)という単位を用いて指定します。

style.css
h1 {
  font-size: 10px;
}

#コメント
/* */で囲んだ行がコメントになります。

style.css
h1 {
  /* コメント */
  font-size: 10px;
}

#フォントの指定
font-familyに様々なフォントを指定することができます。

style.css
body {
  font-family: serif;
}

#背景色を指定する
背景色を変えるにはbackground-colorプロパティを用います。 色の指定の方法はcolorプロパティと同様です。
#ddddddのように同じ値が続く場合は、#dddと省略できます。

style.css
h1 {
  background-color: #ddd;
}

#横幅、高さを指定する
要素の横幅、高さを変更したいときには、それぞれwidthプロパティ、heightプロパティを用います。

style.css
div {
  width: 500px;
  height: 80px
}

#その他
要素を横並びにする

[要素に余白を入れる]
(https://qiita.com/shtwangy/items/ce32223e7a0d2cf66986)

文中の一部にCSSを適用させたい

要素にボーダーをつける

背景画像を指定する

要素を中央に配置する

要素を透過させる

文字の間隔を調整する

displayプロパティの利用方法

カーソルが乗った時のスタイルを指定する

角を丸める

「margin: 0 auto」と 「text-align: center」の使い分け

背景だけ透過させる

アニメーションをつける

行間を指定する

<a>タグのクリックできる範囲

[文字の太さを指定する]
(https://qiita.com/shtwangy/items/d43f4ba70a07a78f40ee)

相対的な大きさを指定する

[画像と文字を重ねる]
(https://qiita.com/shtwangy/items/2b3a4b3415fc7c70b370)

立体的なボタンを作ってみる

ヘッダーを固定する

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?