HTML / Conditional Comments - Do conditional comments behave as expected across browsers?
- by John Himmelman
Do conditional comments behave as expected across browsers? Can they cause rendering bugs or other issues?
Are there any errors in the formatting/syntax of this CC?
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="718" height="227" id="swf">
<param name="movie" value="images/swf.swf" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="images/swf.swf" width="718" height="227">
<!--<![endif]-->
<img src="images/alt.jpg" border="0" width="718" height="227">
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>