我正在为我的网站实施响应式网页设计。为此,我使用@media查询 在不同设备上显示不同的视图。出于测试目的,我正在使用Web开发人员 用于Firefox的工具栏和用于Google Chrome的响应式网站视图加载项。
但是,如果我正在使用:
@media only screen and (max-device-width: 480px)
{
//CSS
}
然后它在实际设备上工作但不在浏览器中工作
和
如果我正在使用
@media only screen and (max-width: 480px)
{
//CSS
}
然后它只能在浏览器上工作而不在设备中。
我哪里错了?需要帮助
答案 0 :(得分:6)
在您的情况下,您可以像这样使用
@media only screen
and (min-device-width : 320px)
and (min-width : 320px) {
/* Styles */
}
所有设备的诽谤媒体查询代码
/* 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 */
}
答案 1 :(得分:0)
@media only screen
and (min-device-width : 320px)
and (min-width : 320px) {
/* Styles */
}
在Firefox OS模拟器中不起作用。