gpt4 book ai didi

html - 媒体查询未运行

转载 作者:行者123 更新时间:2023-11-28 12:41:21 25 4
gpt4 key购买 nike

我创建了一个可以正常运行的网站。

我按照早期的响应式网站放置了媒体查询,但它在我的网站上不起作用。

这是我的网站 www.itztotalsolutions.us,我尝试添加媒体查询以做出响应,但在移动设备或 ipad 中没有媒体查询效果。我在这里提到我在移动设备和 ipad 网站外观方面存在问题。它看起来像是我们在桌面上看到的普通网站,而不是我为移动设备和 Ipad 编写的 css...意味着它无法检测到设备分辨率。

这是代码。在 header 中:

<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 运行的。

请帮我解决这个问题

最佳答案

您没有放错地方的 {} 吗?在此处检查您的 CSS:http://csslint.net/

关于html - 媒体查询未运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17652483/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com