Display content only on mobile devices

后端 未结 4 1095
不思量自难忘°
不思量自难忘° 2021-01-27 05:46

been working with media queries recently and for some reason unknown to me this doesn\'t work?

The idea is to only display the content on mobile devices. IE phones and

4条回答
  •  粉色の甜心
    2021-01-27 06:30

    Please check, and adjust you screen you will get result and change width as per your requirement

    .mobileShow {display: none;} 
    
      /* Smartphone Portrait and Landscape */ 
    
    
      @media only screen and (max-width: 600px) {
        .mobileShow {display: inline;}
    }

提交回复
热议问题