It's still here on HN of course, included in every page request:
HTML hacks that shaped the Internet
11–20 of 233 posts
Re: HTML hacks that shaped the Internet
#12I'm not sure "shaped the Internet" is the right description. These are 10 HTML/CSS hacks that enabled you to work around browser quirks and poor support for certain features.
Some of them are definitely more "historic" than others. For instance, #2 ( -based layouts) definitely shaped much of early-to-mid-2000s web design, and can be viewed as a precursor to flexbox/other modern layout engines. Same with sIFR -- custom webfonts are totally taken for granted today largely because of "hacks" like this.
Same story with rounded corners, which were originally accomplished with tables and images. And a lot of the conventions for website navigation were established in table-based layouts
Re: HTML hacks that shaped the Internet
#13Re: HTML hacks that shaped the Internet
#14Re: HTML hacks that shaped the Internet
#15Re: HTML hacks that shaped the Internet
#16Also I worked somewhere that used Flash as a proxy for realtime socket support. I believe web sockets were not around then or maybe not fully supported.
Re: HTML hacks that shaped the Internet
#17Re: HTML hacks that shaped the Internet
#18I'm not sure "shaped the Internet" is the right description. These are 10 HTML/CSS hacks that enabled you to work around browser quirks and poor support for certain features.
Some of them are definitely more "historic" than others. For instance, #2 ( -based layouts) definitely shaped much of early-to-mid-2000s web design, and can be viewed as a precursor to flexbox/other modern layout engines. Same with sIFR -- custom webfonts are totally taken for granted today largely because of "hacks" like this.
Re: HTML hacks that shaped the Internet
#19I like how HN employs one of these today: - Use HTML tables for layout Hahaha :) On a more serious note, this list highlights how development without standards leads to control information being encoded in various tolerable side-channels. The potential mess and collision of this brings into relief the disdain that's sometimes levelled at the current W3C process. This process marries a standards-driven evolution of we…
Unfortunately a lot of players who rely on browser functionality are completely silent in the standards committees (like the TV vendors who all run their apps in a webkit or chromium version), so it's barely a three-way tug-o-war between Google, Apple and Mozilla
Re: HTML hacks that shaped the Internet
#20Some of my favorites: - Faux columns, to get a visual stretch and make it appear that the sidebar was as long as the content https://alistapart.com/article/fauxcolumns/ - Or take that even further, with a nine-patch and 9 div's or a 3x3 table you could hack your own borders by repeating backgrounds in some axis. With CSS3 we got border-image that could help this a bit. These border styles aren't that much in favor an…
It’s still so clean though after all these years.