HTML IE specific code

css, firefox, html, internet-explorer

Solution

Sure - conditional comments

Problem

Can I use specific html if the browser is IE? (Assuming FF is the default browser) Foe example: ``` html line 1 if IE html line 2 else html line 2 html line 3 html lin3 4 ``` I am aware of using different CSS, but that won't work for this. Thanks.

Original source

Related problems