I need to use css for ie9 to be float: left; but for all other browsers it should be float: none;. So, I tried the following which doesn't work:
li{
float: none !important;
float: left !important \9;
}
How can I target to IE9 only. I would prefer without including external css for this single line of css.