Search code examples
htmlcssinternet-explorer-9quirks-mode

IE 9 rendering issue in standard mode


My application rendering well in IE9 Quirks Mode but not in standard mode.

For example: Rendering div background image in Quirks mode but not in standard mode.

Image-1 Quirks Mode

Image-2 Standard Mode

What should I do to fix this problem?


Solution

  • I changed the CSS as follows.

    display: inline;
    

    to

    display: inline-block;
    

    It fixed my problem.