gpt4 book ai didi

css - Div 的宽度不会因媒体查询而改变

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

这是 html:

<div id='test'></div>

还有CSS:

#test{
height:100px;
width:100px;
background:red;
width: -webkit-calc(100% - 100px);
width:calc(100% - 100px);
}
@media all and (max-width: 500px)
{
.test{
width: 100%;
}
}

本质上,div 的宽度不会因媒体查询而改变(宽度降至 500px 以下)。有什么建议吗?

这是 fiddle :http://jsfiddle.net/rSthC/1/

最佳答案

CSS 中存在错误 - 它应该是 #test 而不是媒体查询中的 .test,因为它是一个 id 而不是一个类。

关于css - Div 的宽度不会因媒体查询而改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18579764/

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