CSSにはたくさんのプロパティがあります。まず、プロパティがわからない人はこちらのリンクをタップしてください。この記事はどんなプロパティがあるのかをざっと見ることができる記事になっています。
基本的なスタイル
ボックスモデル
CSSプロパティ表
レイアウト関連
CSSプロパティ表
プロパティ |
説明 |
例 |
display> |
表示形式を指定 |
display: flex; |
visibility |
表示・非表示の切り替え |
visibility: hidden; |
overflow |
はみ出た部分の処理 |
overflow: hidden; |
z-index |
重なり順を指定 |
z-index: 10; |
position |
配置方法を指定 |
position: absolute; |
top |
上からの位置を指定 |
top: 50px; |
bottom |
下からの位置を指定 |
bottom: 20px; |
left |
左からの位置を指定 |
left: 30px; |
right |
右からの位置を指定 |
right: 40px; |
背景関連
CSSプロパティ表
プロパティ |
説明 |
例 |
background-color |
背景色を指定 |
background-color: lightblue; |
background-image |
背景画像を指定 |
background-image: url(“image.jpg”); |
background-size |
背景画像のサイズ |
background-size: cover; |
background-repeat |
背景画像の繰り返し |
background-repeat: no-repeat; |
background-position |
背景画像の位置 |
background-position: center; |
background-attachment |
背景画像の固定 |
background-attachment: fixed; |
フレックスボックス(Flexbox)
CSSフレックスボックスプロパティ表
プロパティ |
説明 |
例 |
display |
フレックスボックスを適用 |
display: flex; |
flex-direction |
主軸の方向 |
flex-direction: row; |
justify-content |
子要素の整列(横方向) |
justify-content: center; |
align-items |
子要素の整列(縦方向) |
align-items: flex-start; |
flex-wrap |
子要素の折り返し |
flex-wrap: wrap; |
flex-grow |
拡張比率 |
flex-grow: 1; |
flex-shrink |
縮小比率 |
flex-shrink: 0; |
グリッド(CSS Grid)
CSSグリッドプロパティ表
プロパティ |
説明 |
例 |
display |
グリッドを適用 |
display: grid; |
grid-template-columns |
列のサイズを指定 |
grid-template-columns: 1fr 2fr; |
grid-template-rows |
行のサイズを指定 |
grid-template-rows: auto; |
grid-gap |
セル間の余白 |
grid-gap: 10px; |
grid-column |
列の範囲を指定 |
grid-column: 1 / 3; |
grid-row |
行の範囲を指定 |
grid-row: 2 / 4; |
アニメーション
CSSアニメーションプロパティ表
プロパティ |
説明 |
例 |
transition |
変化をスムーズにする |
transition: all 0.3s ease-in-out; |
animation |
アニメーション適用 |
animation: fadeIn 2s infinite; |
@keyframes |
アニメーションの定義 |
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
|
変形(Transform)
CSS変形プロパティ表
プロパティ |
説明 |
例 |
transform |
要素を変形 |
transform: rotate(45deg); |
rotate |
回転 |
transform: rotate(30deg); |
scale |
拡大・縮小 |
transform: scale(1.5); |
translate |
移動 |
transform: translate(50px, 100px); |
フィルター(Filter)
CSSフィルター効果プロパティ表
プロパティ |
説明 |
例 |
filter |
画像のフィルター効果 |
filter: blur(5px); |
blur |
ぼかし |
filter: blur(3px); |
brightness |
明るさ |
filter: brightness(150%); |
contrast |
コントラスト |
filter: contrast(200%); |
ただ表にして並べただけですけど、ざっと見ることはできるので初心者で何があるかわからない人や、玄人でいろいろ知ってる気になってしまっている人はこれを見て復習してください。
読んでくれてありがとう!!
money_monkey
コメント