Home › Forums › CSS › Retina media query not loading background image › Re: Retina media query not loading background image
November 29, 2012 at 3:35 pm
#115961
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%;
}
}