当前位置: 代码迷 >> HTML/CSS >> 14 Sep 09 CSS让您的IE浏览器崩溃(Crash your IE)
  详细解决方案

14 Sep 09 CSS让您的IE浏览器崩溃(Crash your IE)

热度:649   发布时间:2012-10-06 17:34:01.0
14 Sep 09 CSS让你的IE浏览器崩溃(Crash your IE)

严格来说不单是CSS就能令IE浏览器崩溃(crash),而要配合相应的XHTML架构。到现时为止发现有两种正常写法及一种错误结构分别导致会IE6、IE7崩溃(crash),至于原因我尝试寻找过答案但至今还没找到…如你有这方面的认识或更详细的资料很希望你能分享!

1 crash IE6 code

Demo:http://blog.gulu77.com/demo/200808/crash_ie6.html

此BUG只存在IE6中,当伪类为 a:active 时同样会遇到此问题

a{position:relative;}
a:hover{float:left;}

解决方案:为 <a> 添加 zoom:1; 令其触发haslayout

  1. a{position:relative;zoom:1;}
  2. a:hover{float:left;}

2 crash IE6 code

这是HTML结构错误而导致IE6的崩溃,在<col width=”100″/>前或后添加任何字符均会导致IE6 Crash

Demo:http://blog.gulu77.com/demo/200808/HTML_errors_crash_ie6.html

  1. <table style="table-layout:fixed;">
  2. <colgroup>
  3. <col width="100"/>Crash IE6
  4. </colgroup>
  5. </table>

3 crash IE7 code

Demo:http://blog.gulu77.com/demo/200808/crash_ie7.html

Bug from 偷米饭,此bug只存在IE7中据估计是处理省略字的时候导致IE7崩溃.

  1. <style type="text/css">
  2. div{float:left;width:175px;}
  3. ul{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
  4. li{position:relative;}
  5. </style>
  6. <div>
  7. <ul>
  8. <li>崩溃崩溃崩溃崩溃崩溃crash ie7</li>
  9. <li>崩溃崩溃崩溃崩溃崩溃crash ie7</li>
  10. </ul>
  11. </div>

解决方案:

  • 添加 zoom:1; 令其触发haslayout

    ?

    1. <style type="text/css">
    2. div{float:left;width:175px;}
    3. ul{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
    4. li{position:relative;zoom:1;}
    5. </style>

    4 crash IE6 code

    Demo:http://blog.gulu77.com/demo/200808/crash_ie6_test1.html

    当再次改变定位时浏览器崩溃,但似乎也需要N个帮凶才会导致崩溃的代码中CSS table的相属性都缺一不可。

    1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    2. ???????<html xmlns="http://www.w3.org/1999/xhtml">
    3. ???????<head>
    4. ???????<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    5. ???????<title>CRASH-IE,CSS让你的IE浏览器崩溃</title>
    6. ?????<style type="text/css">
    7. ???????html, body {overflow: hidden;scrollbar-base-color: #330066;}
    8. ???????.crash {position:absolute;left:200px;top:200px;width:200px;}
    9. ?????</style>
    10. ?????<script type="text/javascript">
    11. ???????function galgenfrist() {
    12. ???????window.setTimeout('crashIE();',1000);
    13. ???????}
    14. ?function crashIE() {
    15. ???????var moveNode = document.getElementById("move");
    16. ???????if(moveNode) {
    17. ???????moveNode.style.top = "100px";
    18. ???????moveNode.style.left = "200px";
    19. ???????}
    20. ???????}
    21. ?????</script>
    22. ?????</head>
    23. <body onload="galgenfrist();">
    24. ?????<h1>CRASH-IE</h1>
    25. ?????<div id="move" class="crash">
    26. ?????<table>
    27. ?????<tbody>
    28. ?????<tr>
    29. ?????<td>
    30. ?????<textarea></textarea>
    31. ?????</td>
    32. ?????</tr>
    33. ?????</tbody>
    34. ?????</table>
    35. ?????</div>
    36. ?????</body>
    37. </html>

    5 crash IE6 code

    Demo:http://blog.gulu77.com/demo/200808/crash_ie6_test2.html

    具体引起的原因暂时无法解析,但在兼容性和执行效率来看一般不会采取这样的写法。

    1. <script>
    2. ?????for (x in document.write) {
    3. ??????????document.write(x);}
    4. </script>

    6 crash IE6 code

    Demo:http://blog.gulu77.com/demo/200808/crash_ie6_test3.html

    传说是一名日本人发现的,table中直接放置内容,在IE6会引起Mshtml.all模块损坏而关闭浏览器,非IE6则安全无恙。

    1. <style>
    2. ?????* {position:relative}
    3. </style>
    4. <table>
    5. ?????<input>
    6. </table>

    7 crash IE6 code

    Demo:http://blog.gulu77.com/demo/200808/crash_ie6_test4.html

    1. <body onLoad=”window()>

    8 crash IE6 code

    Demo:http://blog.gulu77.com/demo/200808/crash_ie6_test5.html

    CSS中出现@+任意字符+/* 立即崩溃。

    1. <style>
    2. ?????@;/*
    3. </style>
  •   相关解决方案