我在这里有一个页面,我想拥有它,以便主页上的主页滑块至少暂时隐藏在主页上。它在移动safari浏览器上看起来很棒,但它没有显示我的div“primary_home”在chrome中隐藏它应该是隐藏的,我假设是机器人的本机移动浏览器。
这是页面: forloveofallthings.com/home
this is the css used that makes it look the way it should in safari:
#primary_home {
margin-left: 0px;
margin-top: 0 !important;
float: right;
width: 320px;
margin-right: 0px;
display: none;
}
有人可以请一个厕所吗?
答案 0 :(得分:0)
假设您正在谈论此媒体查询,
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
正在投放的样式表没有
display: none;
线。
检查您是否正确上传了样式表,并清除所有服务器端缓存。