[CSS] RWD Website Media-Query-Template

Media Query範本方便設計RWD網頁。
@media (min-width: 1281px) {
  
  /*CSS For this device*/
  
}
@media (min-width: 1025px) and (max-width: 1280px) {
  
  /*CSS For this device*/
  
}
@media (min-width: 768px) and (max-width: 1024px) {
  
  /*CSS For this device*/
  
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  /*CSS For this device*/
  
}
@media (min-width: 481px) and (max-width: 767px) {
  
  /*CSS For this device*/
  
}
@media (min-width: 320px) and (max-width: 480px) {
  
  /*CSS For this device*/
  
}

留言

這個網誌中的熱門文章

8-Bit Plane Slicing 位元平面分割 詳細解說 # 附 Python 程式碼

2023年回到香港IT面試經驗

[CSS]Box-Sizing