HTML hacks that shaped the Internet
31–40 of 233 posts
Re: HTML hacks that shaped the Internet
#32Putting that stuff in css vs having conditional logic in the javascript is a huge win, esp when you want to ssr
Re: HTML hacks that shaped the Internet
#33I 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…
Re: HTML hacks that shaped the Internet
#34Re: HTML hacks that shaped the Internet
#35Earlier quoted context omitted.
Specifically: IE6 was trash. Microsoft had won the browser war, but at the same time the dotcom crash and antitrust action over the tight integration between IE and Windows caused Microsoft to stop investing in it.
Did they ever invest much into it? As far as I understand they got the core components from Spyglass Inc. and avoided paying licensing fees by giving it away for free.
https://archive.ph/20120919002551/http://www.windowsitpro.co...
Re: HTML hacks that shaped the Internet
#36Nowadays, the block model has matured enough to moot the point, but back then, it was the best way to have content that didn't reflow, but would still be presentable.
"Creating Killer Web Sites." That brings back memories...
A lot of folks hated that book.
Re: HTML hacks that shaped the Internet
#37That not hacky enough to make this list? :)
Re: HTML hacks that shaped the Internet
#38Re: HTML hacks that shaped the Internet
#39It's funny how we came around to JSSS, and it's now everywhere: from CSS-in-JS to web components coding their CSS in strings inside Javascript
tags.H1.color = "red";
tags.p.fontSize = "20pt";
with (tags.H3) {
color = "green";
}
with (tags.H2) {
color = "red";
fontSize = "16pt";
marginTop = "4cm";
}
Re: HTML hacks that shaped the Internet
#40Using a corrupted CSS 'voice-family' rule to make IE play nice: https://tantek.com/CSS/Examples/boxmodelhack.html
Those were the days...