I’m having trouble using background-size: cover; in IE8.
An article on CSS-Tricks suggested the following as a solution to IE8’s lack of support for background-size cover:
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=’.myBackground.jpg’, sizingMethod=‘scale’);
-ms-filter: “progid:DXImageTransform.Microsoft.AlphaImageLoader(src=‘myBackground.jpg’, sizingMethod=‘scale’)”;
This solution may be fine, but I was curious if Unbounce had their own solution before I applied this CSS to each element whose background-size was set to cover.
The landing page I’m working on is at http://campaign.kumon.com/kumon-franchise-lp01/
Thanks!