<style>
@media screen and (min-width:768px)
{
.hidden-sm {
display: none !important;
}
}
</style>
<div class="hidden-sm" style="background-color:green;">768- 会显示 </div>
在<768 的时候 应该能显示出来的呀,为什么不显示呢,真是蛋疼
<style>
@media screen and (min-width:768px)
{
.hidden-sm {
display: none !important;
}
}
</style>
<div class="hidden-sm" style="background-color:green;">768- 会显示 </div>
在<768 的时候 应该能显示出来的呀,为什么不显示呢,真是蛋疼
3 回答5.2k 阅读✓ 已解决
2 回答2.7k 阅读✓ 已解决
4 回答1.7k 阅读✓ 已解决
2 回答2k 阅读✓ 已解决
3 回答1.2k 阅读✓ 已解决
1 回答3.1k 阅读✓ 已解决
5 回答1.9k 阅读
发现是chrome浏览器developer Tools 里的 toggle device toolerbar 的bug,
在工具里 调整宽度时,忽略了@media screen and (min-width:768px)
,在外面直接调整浏览器窗口宽度就正常