IE9 bug with increased font-size of css content

前端 未结 5 731
时光说笑
时光说笑 2020-12-09 18:41

I have found a bug in IE9 but googling for it hasn\'t helped finding any solution yet.

The following works fine in FF 3 + 4, Chrome, Opera and even IE8, but not in I

5条回答
  •  感情败类
    2020-12-09 18:47

    This might have something to do with the difference between the parsed DOM trees from IE8 to IE9.

    Internet Explorer 8:

            • Text - Lorem ipsum dolar

    Internet Explorer 9:

        • Text - Empty Text Node
          • Text - Empty Text Node
            • Text - Lorem ipsum dolar
          • Text - Empty Text Node
        • Text - Empty Text Node

    Bonus Reading

    • Interoperable HTML Parsing in IE9

提交回复
热议问题