DIV 标签下的图片在电脑端显示,手机端不显示的方法
先用CSS写好一个Class,代码如下:文章源自原紫番博客-https://www.yuanzifan.com/54308.html
- <style>
- @media screen and (max-width: 1000px) {
- .none{
- display:none;
- }
- }
- </style>
再插入一个div,调用刚刚写好的这个CSS:文章源自原紫番博客-https://www.yuanzifan.com/54308.html
- <div class="none">
- <img src="图片地址"></img>
- </div>
代码的含义为:当屏幕宽度低于1000px,则图片不显示。文章源自原紫番博客-https://www.yuanzifan.com/54308.html
文章源自原紫番博客-https://www.yuanzifan.com/54308.html
文章源自原紫番博客-https://www.yuanzifan.com/54308.html
站长微信
扫码添加(注明来意)

Yuanzifan99
原梓番博客公众号
博客内容精选

原梓番博客
1F
非技术的路过。