我有一个大图像,在较低的分辨率下会在右侧略微被截断。在较低的分辨率下,我不介意将图像换成文本(它是倒计时,我可以指定日期)你是怎么做到的?我已经设法使用 display:none; 摆脱了较低分辨率的图像。
HTML
<div id ="image"><div/>
理想情况下,我会有类似的东西:
<p>a date here....</p> <---this value hidden until the resolution hits the lower margins
CSS
@media (max-width: 500px) {
image:display.none;
}