嗨,我正在使用媒体查询开发响应式网页。
在这里,我需要检查许多设备,例如具有不同最小和最大宽度的智能手机、平板电脑。
例如 :
/* Smartphones (portrait and landscape) ----------- */
   @media only screen 
   and (min-device-width : 320px) 
   and (max-device-width : 480px) {
    /* Styles */
       }
  /* Desktops and laptops ----------- */
   @media only screen 
   and (min-width : 1224px) {
     /* Styles */
    }
如您所见,我需要检查不同的宽度。
所以我正在寻找的是,我可以在浏览器中找到任何选项,我可以提供自定义的最小和最大宽度,所以我可以把我的设计放在那个宽度并根据我的需要安排?