Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Retina media query not loading background image Re: Retina media query not loading background image

#115961
mikes02
Participant

Ended up using the new method [Chris posted about](https://css-tricks.com/snippets/css/retina-display-media-query/ “Retina Display Media Query”) and all is working great now:

@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi) {
#textured
{
background: url(‘images/[email protected]’) repeat;
background-size: 100%;
}
}