我有一个导航栏,其中包含一个列表项,我想为在桌面上查看该站点的任何人隐藏这些列表项。
我的问题是我试图用来隐藏特定<li>
代码内容的css代码无效,我不知道为什么
这是我的代码
<style>
@media only screen and (min-width:500px;) {
li.showonmobile { display:none; visibility: hidden; }
}
</style>
然后我要在桌面上隐藏的li标签是
<li class="level0 level-top showonmobile" style="position:relative;"> <a class="open_special_offers" style="cursor:pointer">SPECIAL OFFERS</a>
<div id="special_offers_dropdown">
<h3>ONLINE EXCLUSIVE</h3>
<div class="so_content">
<center>Buy one get one free</center>
</div>
</div>
</li>
答案 0 :(得分:3)
应该是这样的:(没有;
)
@media only screen and (min-width:500px) {
li.showonmobile { display:none; visibility: hidden; }
}
正在使用 DEMO