这将是我的第一个完全响应的网站,所以我环顾四周,发现帖子底部的基本媒体查询似乎以某种方式或形式与大多数设备相匹配。
我从这些查询之外的代码开始(即针对普通桌面)。然后我处理了第一个移动媒体查询,但第二条规则对我来说没有意义(即大于 321 像素的所有内容)。
这似乎意味着大于 321 到 768 的所有内容,这是下一个规则。我想我误解了这是如何工作的?谁能以足够简单的方式解释这一点?我开始认为我所有的 CSS 代码都应该在这些媒体查询中,我不应该先从移动版本开始,然后随着分辨率的增大逐渐扩展它?
/* Smartphones (portrait) ----------- */
@media only screen and (max-width : 320px)
{
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width : 321px) and (orientation: landscape)
{
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape)
{
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait)
{
}
/* Desktops and laptops ----------- */
@media only screen and (min-width : 1224px) and (orientation: landscape)
{
}
/* Large screens ----------- */
@media only screen and (min-width : 1824px)
{
}