show/hide div based on browser size using ONLY css

2019-01-21 23:19发布

I am a trying to get some divs to show/hide based on browser size, using only css media queries... but nothing seems to be working... please help if you can and let me know what i'm doing wrong... thanks in advance!

heres my css..

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

    .content .700{display:block;}
    .content .490{display:none;}
    .content .290{display:none;}

}

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

    .content .700{display:none;}
    .content .490{display:block;}
    .content .290{display:none;}

}

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

    .content .700{display:none;}
    .content .490{display:none;}
    .content .290{display:block;}

}

and here's my html

<div class="content">
    <div class="700">this is the content for desktop</div>
    <div class="490">this is the content for tablet</div>
    <div class="290">this is the content for mobile</div>
</div>

2条回答
forever°为你锁心
2楼-- · 2019-01-22 00:07

class name can't start with the digit. change it to e.g. x700,x490,x290 and it should work

查看更多
男人必须洒脱
3楼-- · 2019-01-22 00:21

class name cant be a number and cant be start with a number in css, here i changed class name its working good

http://jsfiddle.net/RtTsy/

查看更多
登录 后发表回答