页面上的元素仅响应屏幕尺寸为1650px及以上的媒体查询。因此,我无法对移动设备进行响应。桌面上的一切都很好,但平板电脑和移动屏幕没有响应。发布以下代码。某处有错误吗?以下是我的媒体查询:
@media only screen and (max-width: 380px) {
footer {
margin-top: 50px;
}
.header-image {
height: 50px;
}
#social-icons {
display: flex;
}
}
@media only screen and (max-width: 480px) {
.header-image {
height: 100px;
}
#social-icons {
display: flex;
}
.custom-logo {
margin-top: 50px;
}
}
@media only screen and (max-width: 600px) {
footer {
margin-bottom: 50px;
text-align: center;
margin: 0 auto;
}
#social-icons {
display: flex;
}
.textwidget {
display: flex;
text-align: center;
}
.widget_text {
margin-right: 60px;
}
.custom-logo {
margin: 30px;
}
}
@media only screen and (max-width: 768px) {
.header-image {
height: 100px;
}
.menu-toggle {
display: none;
}
.custom-logo {
width: 50%;
margin-top: -20px;
}
}
@media only screen and (max-width: 900px) {
.main-navigation ul li a {
font-size: 16px;
display: none;
}
.custom-logo {
width: 70%;
position: relative;
}
}
@media only screen and (max-width: 1100px) {
.main-navigation ul {
margin-top: -35px;
}
.custom-logo {
width: 50%;
margin-top: -20px;
position: relative;
}
}
@media only screen and (max-width: 1250px) {
.custom-logo {
margin-left: 30px;
}
}
@media only screen and (max-width: 1400px) {
.custom-logo {
margin-top: 50px;
width: 50%;
}
}
@media only screen and (max-width: 1500px) {
.custom-logo {
margin-left: 100px;
}
}
@media only screen and (max-width: 1650px) {
.custom-logo {
margin: 0px;
}
}
@media only screen and (max-width: 1850px) {
.custom-logo {
width: 25%;
}
}
答案 0 :(得分:4)
使用非移动优先方法(max-width
)时,您需要按顺序将查询从最高到最低(因为CSS是级联的,因此最新规则将覆盖第一个),但是让它倒退。