asp.net - IE9 behaves differently for the same CSS3 but different applications(WebFrom and MVC) -
i have 2 applications, 1 in asp.net 4.5 web forms , other in asp.net 4.5 mvc). used same css3 background both follows. background-color:#xxxxx; background-image:url("../media/background/xxxxxxxxx.gif"); background-repeat:no-repeat; background-size:cover;
but ie9 behaves differently web form , mvc.
it can seen in following websites www.dsw.dynamicwebapplication.net (web form) www.weyni.dynamicwebapplication.net (mvc)
note: understand difference, check both websites in different browsers + ie9
did make mistake or ....?
your web form site contains tag:
<meta http-equiv="x-ua-compatible" content="ie=8" />
that isn't present in mvc site.
in general, if want same result in browser, need send same html.
Comments
Post a Comment