Web白描

Webデザインの勉強 - 演習

★Grid

Grid で中央配置

Grid で中央配置 unsplash.com 完成例 コーディング例 <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>【コーディング練習】Grid で中央配置</title> <link rel="preconnect" href="https://fonts.googleapis.com"> </link></meta></meta></head></html>

display: grid; を理解する

display: grid; を理解する grid の特徴 あらかじめ決められた枠の中にアイテムを並べるレイアウトにむいている 枠の中を縦横のグリッド線で区切られたエリア枠を設定しアイテムを並べる「二次元のレイアウト手法」 レイアウトのための div要素は不要 flexbo…