屏幕分辨率低于600后隐藏图像

时间:2014-06-25 19:13:38

标签: css image hide screen-resolution

这是我的网站:http://highcatering.wpengine.com/ 那里有一个婚车形象。我希望在屏幕尺寸低于600px时隐藏它。为什么?尝试减少浏览器的宽度(或在移动设备上查看它),您将看到文本移动到汽车下方,没有左边距,并且汽车和文本之间没有边距。

我希望汽车消失。

有什么想法吗?

感谢!!!

1 个答案:

答案 0 :(得分:2)

把它放在你的style.css

@media screen and (max-width: 600px) { 

.post .sc_image img { display: none; }  

}