CSSメモ

タイルレイアウト

.container {
    column-count: 3;
    column-gap: 24px;
}
column-count: 3;
column-gap: 24px;

font-size

単位説明
px絶対値
%親要素相対値
em親要素相対値
remルート要素相対値

色の指定

#FFFFFF
rgb(255, 255, 255)
rgba(255, 255, 255, 1.0)
cmyk(0%, 0%, 0%, 0%)

transform

傾ける:

transform: rotate(45deg);