Using retina images for background images

Hi, I'm using retina background images placed in the Muffin Builder selection.

Here's my custom CSS which is working for Chrome on both retina and non retina monitors..

only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 72dpi),
only screen and (                min-resolution: 2dppx) { 
.breakout {
        background-size: 1501px 516px!important;
    }
}


My question is this does not work for non retina monitors using safari? can you help? thanks.

Comments

Sign In or Register to comment.