CSS
W3Cのreference
CSS Values and Units Module Level 3
関連
CSS設計
CSSの単位
CSS 逆引き
CSS関数
CSS Custom Property
擬似クラス
CSS @規則
CSSの結合子
Alt CSS
パフォーマンス
未使用のCSSを削除する
minify
要素
CSS: text-overflow
CSS: box-sizing
CSS Animation
CSS: transition
CSS: transform
CSS: clip-path
CSS: writing-mode
CSS: column
etc.
機能
Cascade Layers
CSS Nesting Module
CSS Cascading and Inheritance
コピペサイト
https://see-ss.com/
CSS Generator
https://www.css3maker.com/
http://css3button.net/
CSSを学ぶ
Learn CSS
コーディング規約
https://zenn.dev/catnose99/articles/ee6787afe2182c
https://qiita.com/pugiemonn/items/964203782e1fcb3d02c3
#WIP
https://web.dev/state-of-css-2022/
2022
CSS Challenges
https://css-challenges.com/
CSSの問題集みたいな
ユニバーサルセレクタ (*)
隣接セレクタ
https://qiita.com/arowM/items/e1af320e2755461649a0
css全般の話
https://web.dev/i18n/ja/new-responsive/
prefers-reduced-motion
prefers-contrast
prefers-reduced-transparency
prefers-color-scheme
inverted-colors
initialとかinheritとかについて
https://medium.com/@elad/understanding-the-initial-inherit-and-unset-css-keywords-2d70b7121695
https://qiita.com/mamiyan/items/778183160e9e58546824
パフォーマンスを意識した書き方
max-widthとmin-width
rendering
https://numb86-tech.hatenablog.com/entry/2020/11/04/145316
https://coliss.com/articles/build-websites/operation/css/popular-layouts-and-patterns-made-with-css.html
よくつかうCSSのパターン、レイアウト、コンポーネントをまとめたサイト
プロパティ
以下の順でブロックごと。その中でアルファベット順にする。
1. 配置、存在
float, position, display など
配置は子要素にも関わる大事な指定のため、一番上に目立たせて書く
一番上にpositionを書く
次に
配置はCSSのショートハンドと同じ順序(上右下左の順)で記述し
top, right, bottom, left
次にdisplay
2. サイズ
height, width, margin, padding など
3. テキスト装飾
color, font-size, text-align など
4. 要素装飾
background, border, box-sizing など
5. アニメーション、UI
transition, opacity, cursor など