> 1x1.gif let you push elements all around the page effortlessly. To this day it is the only way to vertically center elements. False, dynamic vertical centering has always been possible with tables: dynamically vertically centered This is something CSS still can't seem to do dynamically except with table-emulation, which, you know, kind of defeats the whole fucking purpose of CSS (and isn't backwards compatible anyw…
-- Here's something else CSS still can't do AFAIK: -- -- fixed" -- dynamic -- Actually, it can. I did it for you: Image: http://i.imgur.com/l5GPLNC.png Source: https://gist.github.com/Imdsm/9226944
.container {width: 80%;} .left {float:left; width: 300px; background: yellow;} .right {margin-left: 300px; background: red;}