メディア特性について学びます。
width ⇒表示領域の横幅
height ⇒表示領域の高さ
max-width ⇒表示領域の横幅(このあとの指定が適用される最大値)
min-width ⇒表示領域の横幅(このあとの指定が適用される最小値)
device-width ⇒デバイスの横幅
device-height ⇒デバイスの高さ
orientation ⇒デバイスの向き(スマートフォン、タブレット向け)
portrate ⇒縦長
landscape ⇒横長
(例) @media screen (min-width :480px)and(max-width :720px) { /*CSSの記述*/ }
以上、メディア特性について学びまました。
