gpt4 book ai didi

css - 如何根据显示的大小更改css

转载 作者:行者123 更新时间:2023-11-28 15:45:17 25 4
gpt4 key购买 nike

我是 CSS 新手,正在尝试修复以下代码。我想要一个简单的东西,屏幕尺寸小于 400 改变图像尺寸..它应该工作,但它不..我试着做

* {
box-sizing: border-box;
}

body, html {
background: #fff;
height: 100%;
margin: 10px;
}

.left__img2 {
position: absolute;
float: left;
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
border-radius: 20px;
width: 600px;
height: 400px;
}


@media screen and (max-width: 500px) {
.left__img2 {
width: 10px;
}
}

最佳答案

CSS 顶部的媒体查询需要 !important 来控制媒体查询。底部的媒体查询不需要 !important。我将查询放在顶部,所以我使用 !important 来控制之后的任何其他样式。

@media screen and (max-width: 500px) {
.left__img2 {
width: 10px !important;
}
}

* {
box-sizing: border-box;
}

body, html {
background: #fff;
height: 100%;
margin: 10px;
}

.left__img2 {
position: absolute;
float: left;
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
border-radius: 20px;
width: 600px;
height: 400px;
}

关于css - 如何根据显示的大小更改css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54246964/

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