คุณคิดอย่างไรเกี่ยวกับการใช้สไตล์นี้?
สำหรับจุดพักทั้งหมดซึ่งส่วนใหญ่สำหรับ "โทรศัพท์มือถือ" ผมใช้min(max)-device-width
และจุดพักซึ่งส่วนใหญ่สำหรับ "เดสก์ทอป" min(max)-width
การใช้
มี "อุปกรณ์เคลื่อนที่" จำนวนมากที่คำนวณความกว้างไม่ดี
ดูhttp://www.javascriptkit.com/dhtmltutors/cssmediaqueries2.shtml :
/* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait){
/* some CSS here */
}
/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape){
/* some CSS here */
}
/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px){
/* some CSS here */
}
/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2){
/* some CSS here */
}
/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px){
/* some CSS here */
}
/* #### Desktops #### */
@media screen and (min-width: 1024px){
/* some CSS here */
}