Media Queries(メディア クエリ):メモ

/* ウインドウの幅が480px以上の時 */
@media screen and (max-width:480px){
  xxxxxx
}
/* ウインドウの幅が800px以上の時 */
@media screen and (min-width:800px){
  xxxxxx
}

———————————–

/* ウインドウの幅が320px以上かつ高さが640px以上の時*/
@media screen and (min-width: 320px) and (min-height: 640px){
  xxxxxx
}