3

我正在为我的网站实施响应式网页设计。为此,我使用@media 查询在不同的设备上显示不同的视图。出于测试目的,我使用 web 开发人员工具栏进行火狐浏览器和谷歌浏览器的响应式站点视图插件。

但是,如果我使用:

@media only screen and (max-device-width: 480px)
{
    //CSS
}

然后它在实际设备上工作,但不在浏览器中

如果我正在使用

@media only screen and (max-width: 480px)
{
    //CSS
}

然后它只适用于浏览器而不是设备。

我哪里错了?需要帮忙

4

2 回答 2

7

在您的情况下,您可以像这样使用

@media only screen 
    and (min-device-width : 320px) 
    and (min-width : 320px) {
    /* Styles */
    }

这是Chris Coyier针对所有设备的诽谤媒体查询代码

/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {
/* Styles */
}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */
}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
/* Styles */
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */
}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */
}

/* iPhone 4 ----------- */
@media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
}
于 2013-03-05T05:04:49.667 回答
0
@media only screen 
    and (min-device-width : 320px) 
    and (min-width : 320px) {
    /* Styles */
    } 

在 Firefox OS 模拟器中不起作用。

于 2014-01-06T01:58:08.423 回答