媒体查询未运行

时间:2013-07-15 10:50:37

标签: html5 css3 media-queries

我创建了一个完全正常运作的网站。

我把媒体查询...放在早期的响应式网站上,但它在我的网站上无效。

这是我的网站www.itztotalsolutions.us,我试图添加媒体查询以进行响应,但在移动或ipad中没有媒体查询效果..在这里我提到我有移动和ipad网站的问题看...它似乎是一个普通的网站,因为我们在桌面上看到的不是我为移动和Ipad写css ...意味着它没有检测到设备分辨率。

这是代码。在标题中:

<meta name="viewport" content="width=device-width" />

在style.css中:

body, html { height: 100%;}
body {
    font-size: 12px;
    line-height: 18px;
    font-family: arial, sans-serif;
    width:100%;
    margin:auto;
    background:url(images/main-full-bg.jpg) repeat #F60;
    background-size:cover;
}

...etc.... all CSS for pages.. after it

/* ipad portrait */
@media only screen and (min-device-width : 768px) and (max-device-width : 980px) {
    body { min-width: 768px; }
    .shell { max-width: 748px; }
    #navigation ul li { padding-left: 24px; font-size: 15px; }
    .header-top { padding-left: 20px; padding-right: 20px; }
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    body { min-width: 320px; }
    .shell { max-width: 320px; }
    .header .shell { padding:0; background: url(images/m-header-shell.jpg) no-repeat 0 0; }

    .header-top { padding: 0px 0 0px 0; }
    #logo { margin: 0 auto; float: none; display: block; }
}
@media only screen and ( max-width: 767px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-resolution: 240dpi) {

    #logo a { background: url(images/logo@2x.png) no-repeat 0 0; -webkit-background-size: 142px 57px; -moz-background-size: 142px 57px; background-size: 142px 17px; }
    #navigation { background: url(images/navigation@2x.png) no-repeat 0 0; -webkit-background-size: 298px 32px; -moz-background-size: 298px 32px; background-size: 298px 32px; }
    #navigation a.nav-btn span { background: url(images/nav-arr@2x.png) no-repeat 0 0; -webkit-background-size: 10px 15px; -moz-background-size: 10px 15px; background-size: 10px 15px; }
    .pagination a { background: url(images/pagination@2x.png) no-repeat 0 1px; -webkit-background-size: 18px 40px; -moz-background-size: 18px 40px; background-size: 18px 40px; }
    .main section { background: url(images/section@2x.png) no-repeat center bottom; -webkit-background-size: 300px 10px; -moz-background-size: 300px 10px; background-size: 300px 10px; }
}

我检查过,当我在移动设备上运行时,似乎CSS是从默认CSS运行而不是从查询CSS运行。

请帮我解决这个问题

1 个答案:

答案 0 :(得分:0)

你有没有放错地方{}? 在这里查看您的CSS:http://csslint.net/