Created
May 10, 2020 14:01
-
-
Save kt3k/a6a8aaab2d6148ac6db8c8bbd66f5246 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
css 講座 | |
# css の基本文法 | |
## セレクターとプロパティ | |
css の例 | |
body { background-color: red; } | |
この時、body の部分のことをセレクター、background-color の事をプロパティ、red の事をプロパティの値と言います。 | |
上の css は <body> タグの background-color (背景色) を赤くする、という意味の css になります。 | |
css は基本的に、 | |
セレクター { プロパティ: 値; } | |
という形式を積み重ねて、いろいろなスタイルを web ページに与えていきます。1つのセレクターに対して、複数のプロパティをまとめて与えることも出来ます。 | |
body { | |
background-color: red; | |
padding: 15px; | |
font-family: 'メイリオ'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment