gpt4 book ai didi

css - @media 不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 07:27:35 25 4
gpt4 key购买 nike

我在让我的媒体查询处理家庭作业时遇到了问题。我想我做的一切都是正确的,我花了 2 个多小时试图理解为什么从移动设备查看时它似乎没有做任何更改。如果有人有任何想法,那将大有帮助。附件是我的 html 头部部分和遵循我的标准 css 的 css 代码。

<head>
<title>Pacific Trails Resort</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="pacific.css" rel="stylesheet">
<link href="pacificprint.css" rel="stylesheet" media="print">
</head>

@media only screen and (max-width: 1024px) {
body { margin: 0 ;
padding: 0 ;
background-image: none }
#wrapper { width: auto ;
min-width: 0 ;
margin: 0 ;
box-shadow: none }
h1 { margin: 0 }
nav { float: none ;
width: auto ;
padding: 0.5em }
nav li { display: inline-block }
nav a { padding: 1em }
main { padding: 1em ;
margin-left: 0 ;
font-size: 90% }
footer { margin: 0 }
}

最佳答案

问题是你的一半 CSS 规则没有以分号结尾。

虽然最后的 CSS 分号确实可以在语句中省略, at-rules (如媒体查询)构成自身的声明:

enter image description here

A statement is a building block that begins with any non-space characters and ends at the first closing brace or semi-colon (outside a string, non-escaped and not included into another {}, () or [] pair).

因此,只有您的last 规则可以省略分号(页脚)。

话虽如此,在每行中添加分号是一种很好的做法,不会造成任何问题,因此这是您应该始终追求的目标。

我已经格式化了代码并在以下(现在可用的)示例中的每一行中添加了分号:

@media only screen and (max-width: 1024px) {
body {
margin: 0;
padding: 0;
background-image: none;
}
#wrapper {
width: auto;
min-width: 0;
margin: 0;
box-shadow: none;
}
h1 {
margin: 0;
}
nav {
float: none;
width: auto;
padding: 0.5em;
}
nav li {
display: inline-block;
}
nav a {
padding: 1em;
}
main {
padding: 1em;
margin-left: 0;
font-size: 90%;
}
footer {
margin: 0;
}
}
<head>
<title>Pacific Trails Resort</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<link href="pacific.css" rel="stylesheet">
<link href="pacificprint.css" rel="stylesheet" media="print">
</head>

关于css - @media 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49745362/

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