Remove element for certain screen sizes

前端 未结 4 1015
广开言路
广开言路 2020-12-15 22:18

I am currently creating a responsive web design using media queries. For mobile devices I want to remove my JS slider and replace it with something else. I have looked at

4条回答
  •  借酒劲吻你
    2020-12-15 22:38

    Not a 100% sure what you mean. But I created a class "no-mobile" that I add to elements that should not be shown on mobile devices. In the media query I then set no-mobile to display: none;.

    @media screen and (max-width: 480px) {
    
            .nomobile {
                display:none;
            }
    }
    

提交回复
热议问题