You are on page 1of 1

orry I may not explain myself properly, the problem is that the images doesn't become big enough,

so I guess they should go over their width of 100%. however If I just increase the width it doesn't
work, I think it's the purecss that for some reason limit the width of the image to no more than
100% – Albic7 Dec 19 '16 at 1:40
 Ah ok.. well you could just set the images width: 100%, But this will stretch the image past its
resolution.. you could use a Javascript fix but in my opinion using JS for responsive images is
overkill. You could also look at the <picture> tag but this isn't supported by all browsers so you
know IE and all that.. or you could save the images to the always fit the wrapper of your site and
use the method above... it means you are sending oversize images to a mobile device but with
some image compression is isn't that bad. – Dominion79 Dec 19 '16 at 10:53
add a comment
0
The simplest way - just append width: 100% on your image.
https://jsfiddle.net/zv95xt4r/

You might also like