Media Query 書き方1
@media
ひとつのCSS
振り分け
@mediascreen and (min-width: 481px) {
body {...}
}
@media screen and (min-width: 768px) {
body {...}
}
Link 複数CSSファイルをlink
読み込む
<link href=”sp.css">
<link media="screen and (min-width: 481px)" href="tablet.css">
<link media="screen and (min-width: 768px)" href="desktop.css">
@import 複数CSSファイルをimport要素
読み込む
@import url(”sp.css");
@import url("tablet.css") only screen and (min-width: 481px);
@import url("desktop.css") only screen and (min-width: 768px);