html - conditional css not working correctly? -
i have used condition css internet explorer show auto cursor in internet explore not working correctly have used following code link
<!--[if ie]><link rel="stylesheet" href="newstyle_ie.css" media="screen" type="text/css" /><![endif]-->
i have show default cursor in internet explore uses
body{ cursor:auto !important;}
and other browsers have used
body{ cursor:url("some url");}
any hint ???
your conditional comment ok, should check cursor url, , set fallback value(i.e. pointer, separated comma), in case first cursor isn't found. check path css file
Comments
Post a Comment