@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 767px) {
html{
font-size: 20px;
max-width: 767px;
}
.main-nav li{
padding: 0;
}
.main {
margin: 0px auto;
padding-top: 4px;
font-size: 65%;
}
h1{
font-size: 120%;
}
.welcome {
position: absolute;
width: 767px;
}
.p1{
color: white;
font-size: 10px;
transform: translate(5%, 10%);
margin: 0;
}
.section1 {
background-color: #ffffff;
background-image: linear-gradient(rgba(93, 91, 91, 0.67), rgba(93, 91, 91, 0.67)), url(img/patrick-tomasso-71909-unsplash.jpg);
background-size: cover;
background-position: center;
}
@media only screen and (max-width: 1023px) {
.welcome {
font-size: 120%;
width: 1023px;
}
.sec-1{ margin-left: 30px; }
.sec-1-ul li a,
.sec-2-ul li a,
.sec-3-ul li a {
font-size: 80%;
}
.p1{
margin: 10%;
color: white;
font-size: 100%;
transform: translate(5%, 10%)
}
}
@media only screen and (max-width: 1200px) {
.section1 {
background-color: #ffffff;
background-image: linear-gradient(rgba(93, 91, 91, 0.67), rgba(93, 91, 91, 0.67)), url(img/patrick-tomasso-71909-unsplash.jpg);
background-size: cover;
background-position: center;
height: 70vh;
}
.logo{
margin-left: 5px;
}
.p1{
font-size: 150%;
transform: translate(0%, 0%);
max-width: 100%;
}
h4{
font-size: 120%;
}
.sec-1,
.sec-2,
.sec-3{
margin-top: 0px;
}
.sec-1-ul li a,
.sec-2-ul li a,
.sec-3-ul li a {
font-size: 90%;
}
h3{
font-size: 120%;
margin-top: 2px;
margin-left: 20%;
}
}

我是网络开发的新手。我正在使用媒体查询进行响应式Web开发。我在我的文件中定义了4个屏幕宽度。但是如果我在一个宽度中定义了任何css属性的值,我就无法在其他宽度中更改它。例如,如果1200px中一个标题的字体大小为80px,我无法将其更改为40像素,1023px并保持不变。错误是什么?
答案 0 :(得分:0)
如果您使用max-width,则必须按照其他方式对媒体查询进行排序:首先max-width: 1200px
,然后是1023px,然后是767px。
现在你拥有它们的方式最后一个媒体查询中的规则将始终覆盖前面的规则,因为顺序也是相关的(后面的那些将覆盖之前的那些),max-width: 1200px
也适用于较小的宽度。如果你扭转它们就不会发生。