Strategy for Fixing Layout Bugs in IE6?

前端 未结 12 1576
别跟我提以往
别跟我提以往 2021-01-05 08:02

Generally, what\'s the best way to tackle a layout bug in IE6? What are the most common bugs or problems that one should look for when trying to figure out why your page sud

12条回答
  •  生来不讨喜
    2021-01-05 08:43

    The box model is usually the culprit. Basically what this means is that any div you are trying to position and use unsupported CSS with will cause this problem.

    You may find it happens if you are using min-{width,height} or max-{width,height}.

    this provides a great reference for checking compadibility with different versions.

    http://www.aptana.com/reference/html/api/CSS.index.html

提交回复
热议问题