What am I missing about DIV layout?
I read in a tutorial about DIV layout that it is superior to table layout because table layout does not look the same in all browsers.
However, I have the exact opposite experience. Table layouts actually do look the same in all browser, whereas my humble DIV layout attempts do not.
It seems as if designers and programmers both wanted to split layout and content, but did it in different ways:
Designers:
"Let's take out all the layout from the HTML page, so all that is left is the content"
Programmers:
"Let's take out all the content of the HTML page, so all that is left is the layout"
I've purchased a few HTML templates, and while they look nice, I usually end up re-doing them in tables, to get them to obey my wishes.
So, what am I missing? Are you using DIV or table layout? I have sooo many problems with DIV layout not behaving correctly, and differently in different browsers. Is it time for a comeback for table layout? Or have I just not learned to do proper DIV-layout yet?