gpt4 book ai didi

CSS 媒体查询有选择地不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 22:18:27 24 4
gpt4 key购买 nike

我正在尝试设置页面样式,桌面工作正常,我的问题是移动 View 。移动 View 适用于选定的组件,例如背景图像运行良好。

我想在移动 View 中为这张卡片提供 300px; 的宽度,但它不是拾取,但是当我将高度设置为 700px 或任何它有效时。正如您在屏幕截图中看到的,移动样式已被取消,这意味着它没有被应用。

Mobile view, the card width is too large for the screen, I need it to be 300px

这是我的 CSS

@media only screen and (max-width: 600px) {
h3 {
font-size: 1.2em;
}

.ant-card {
margin: auto;
width: 300px;
}

.Background {
background-image: url(./images/mob.jpg);
background-size: cover;
text-align: center;
}

}

.ant-card {
margin: auto;
width: 400px;
}

有人看到我没看到的东西吗?

最佳答案

我相信这只是 CSS 文件中的顺序决定了偏好。因此,在具有相同特异性级别的媒体选择器查询之前声明您的“默认”样式。例如:

 .ant-card {
margin: auto;
width: 400px;
}

@media only screen and (max-width: 600px) {
h3 {
font-size: 1.2em;
}

.ant-card {
margin: auto;
width: 300px;
}

.Background {
background-image: url(./images/mob.jpg);
background-size: cover;
text-align: center;
}
}

关于CSS 媒体查询有选择地不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55197269/

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