Ya te mostramos por qué tantos geeks odian Internet Explorer , y dado que es casi Halloween, pensamos que le mostraríamos algo realmente aterrador: cómo bloquear cualquier versión de Internet Explorer con nada más que HTML y CSS.
Nota: en realidad, no intentamos utilizar Internet Explorer; de hecho, el la última versión beta es bastante agradable , pero pensamos que nos divertiríamos un poco con este error, y tal vez alguien en Microsoft solucione este problema antes del lanzamiento final.
Cómo bloquear Internet Explorer con HTML
Simplemente abra el bloc de notas u otro editor de texto, pegue lo siguiente y guárdelo como SomeFilename.html.
<html> <cabeza>
<style type = "text / css">
#a {
margen: 0 10px 10px;
}#b {
ancho: 100%;
}</style>
<title> IE Crasher </title>
</head>
<cuerpo>
<tabla><tr> <td>
<div id = "a">
<formulario id = "b">
<input type = "text" name = "test" />
</div>
</td> <td width = "1"> </td> </tr> </table>
</body> </html>