css - Changing layout to IE browsers -
this question may sound subjective or in appropriate make sense programmers me (who doesn't have knowledge of css).
i have template has css (around 300 lines), working fine on firefox, opera, chrome , ie10+. in practical world, may not ie need prepare ie version 8 & 9. so, there easy & quick way change css compatible ie without interaction css? or there way can paste existing css compatible ie converted css?
i sorry if question not clear, mean ask how can convert css code ie versions? there tool available online on can paste code , select destination ie version create css code ie version? or have write code manually each ie version?
*note: css code doesn't have reference other css framework bootstrap, boilerplate etc.. *
sure! use additional css file specially ie lower 10. can rewrite classes main css file in it. include new css file (for ie lower 10) after main css file:
<!--[if lt ie 10]> <link rel="stylesheet" type="text/css" href="ie-old.css" /> <![endif]-->
Comments
Post a Comment