Closed Mr0grog closed 11 years ago
@2x images are not being sized correctly for the logo in the header and the links in the footer on retina displays in Chrome:
Looks like this is being caused by specifying background instead of background-image in the CSS:
background
background-image
.landing header { background: url("../img/311_service_tracker_logo_big_x2.png"); }
In Safari, the shorthand property does not override background-size, but in Chrome it does, so we're losing the size information when we do this.
background-size
Possibly relevant: http://updates.html5rocks.com/2013/02/CSS-Background-shorthand-coming-to-mobile-WebKit-browsers
@2x images are not being sized correctly for the logo in the header and the links in the footer on retina displays in Chrome:
Looks like this is being caused by specifying
background
instead ofbackground-image
in the CSS:In Safari, the shorthand property does not override
background-size
, but in Chrome it does, so we're losing the size information when we do this.