📜 ⬆️ ⬇️

A line of code that kills IE6 :)

The Japanese blogger Hamachiya2 “invented” a short line of HTML code that IE6 misunderstood and gives a critical error :-)
<style> * {position: relative} </ style> <table> <input> </ table>

Do not believe? Check it out ! All other browsers are fine.

Source - immike.net

Updated : To destroy IE7 you just need to add a doctype :) Oh, great fighters with standards!
<! DOCTYPE html PUBLIC "- // W3C // DTD XHTML 1.0 Strict // EN" " www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd ">
<style> * {position: relative} </ style> <table> <input> </ table>

')

Source: https://habr.com/ru/post/12932/


All Articles