• I understand how to use conditional comments to target certain versions of IE and call a specific stylesheet for IE.

    But what I don’t understand is what goes into the stylesheet? What does IE not understand? I have a very simple 2-column layout with a header and a footer and this layout breaks in IE. Why? I don’t know. So how am I supposed to code a stylesheet specifically for a browser that doesn’t understand the simplest layout?

    Is there a way to get an IE specific 2-column-layout stylesheet example somewhere?

    Thanks.

Viewing 1 replies (of 1 total)
  • IE version not support few of CSS formating, all browser is not support all same defined CSS style .

    If your not supported style is more then defined one stylesheet. else just defined style in header.php. in Below Condition.

    <!–[if IE 7]>
    <style type=”text/css”>
    /* Put your style here */
    </style>
    <![endif]–>

    or

    <!–[if IE 8]>
    <style type=”text/css”>
    /* Put your style here */
    </style>
    <![endif]–>

Viewing 1 replies (of 1 total)
  • The topic ‘what is a ie-specific stylesheet’ is closed to new replies.