gpt4 book ai didi

css - 使用 weebly.com 仅在手机/平板电脑/台式机上显示 div

转载 作者:行者123 更新时间:2023-11-28 09:42:44 25 4
gpt4 key购买 nike

我只想在移动设备上显示一个在桌面设备上看不到的特定 div,反之亦然。这段代码应该可以工作,但我似乎无法使用 weebly.com 使这段代码工作

<style>

@media all and (max-width: 959px) {

.content .one{display:block;}
.content .two{display:none;}
.content .three{display:none;}

}

@media all and (max-width: 720px) {

.content .one{display:none;}
.content .two{display:block;}
.content .three{display:none;}

}

@media all and (max-width: 479px) {

.content .one{display:none;}
.content .two{display:none;}
.content .three{display:block;}

}
</style>

<div class="content">
<div class="one">this is the content for desktop</div>
<div class="two">this is the content for tablet</div>
<div class="three">this is the content for mobile</div>
</div>

最佳答案

您的代码完全没问题。在 JsFiddle 上尝试了同样的方法。 It Works

调整窗口大小并针对各种分辨率进行测试。

@media all and (max-width: 959px) {

.content .one{display:block;}
.content .two{display:none;}
.content .three{display:none;}

}

@media all and (max-width: 720px) {

.content .one{display:none;}
.content .two{display:block;}
.content .three{display:none;}

}

@media all and (max-width: 479px) {

.content .one{display:none;}
.content .two{display:none;}
.content .three{display:block;}

}
<div class="content">
<div class="one">this is the content for desktop</div>
<div class="two">this is the content for tablet</div>
<div class="three">this is the content for mobile</div>
</div>

关于css - 使用 weebly.com 仅在手机/平板电脑/台式机上显示 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25355566/

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