Thanks mate :) That Coda feature you mentioned last sounds pretty fantastic, wish they'd just release it on Windows so i don't have to set up a dual-boot system on my new laptop :(
I'm a firm believer that, by focusing on your core markup, and debugging at the core before diving into a hacked solution is the best and easily possible way. It all comes down to whether or not you have the gumption to wade through the wrappers and the css to find the bug. I'm also a firm believer that no hacks are possible on many many layouts.
Well said. We have a few problems with that at work on our current project. The main bugs we were having were floating and using absolute and relative. The biggest issue we always come across is double side margins on floating elements in IE6. Now we can either do it as normal, and add a hack, or add an extra div with padding but no width, the width coming from the inner div.
When it comes to hacks in CSS, it's a choice: either add the hack, or add extra markup to get round it. Both methods have pros and cons, so it's the developer's choice.

» CSS Frameworks? ... Last Reply: 8 months ago by Scrivs.
KISS indeed :)
I use a very simple framework, just a few classes I use in every document:
On top of that, I tend to have empty statements for body, a and p elements, and h1-h6 too.
Just so you all know ;)