IE compatible mode – DEVIL for Web Designers and Developers

2 comments

IE compatible mode – DEVIL for Web Designers and Developers

I noticed most of the web developers and designers hate IE compatible view. The reason is that in there general coding practice and cross browser testing they do not give preference and forgot to test their webpage outputs in IE compatibility view and when at the end of project delivery it clicks in their mind, it get too late and brings lots of burden to rectify the UI compatibility issues. Here I am sharing a best solution for them, as with the help of http-equiv="X-UA-Compatible" Meta Tag you can easily control that what browser version your page will render in.…

Continue Reading

Multi Browsers CSS Hacks and Compatibility Test

No comments yet

Multi Browsers CSS Hacks and Compatibility Test

Here I am sharing few of the very useful multi browser/cross browser CSS hacks, that one web designer and developer requires in his/her day to day integration. If you like, you can test CSS hacks and compatibility, by opening this page in your different browser. /* IE6 and below */ * html #uno { color: red } /* IE7 */ *:first-child+html #dos { color: red } /* IE7, FF, Saf, Opera */ html>body #tres { color: red } /* IE8, FF, Saf, Opera (Everything but IE 6,7) */ html>/**/body #cuatro { color: red } /* Opera 9.27 and below, safari…

Continue Reading