This is completely subjective. Here's my opinion on the matter.
Figure out what browser your target users are using/can use...
Option 1. If a high percentage (maybe 80%-100%?) of prospective users use modern browsers, consider graceful degradation. Make your site the best it can be then handle older browsers with "not supported, please upgrade" style messages.
Option 2. If a moderate percentage (maybe 20%+) of prospective users use older browsers, consider progressive enhancement. Make your site work for ALL users (i.e. plain html) then add bells and whistles for modern browsers.
If your site is public, there's a good chance it will fall into option 2. It's hard to tell what your user base will be. This may be less true if your site is targeted at a certain audience (e.g. If you're building an app for techies, you could almost guarantee they won't be using
If your site is private/PAYG, you have a bit of a standing to support "minimum browser specs". For some clients, this may not be feasible. I know of certain UK government branches that will only allow IE6 on their internal machines due to security concerns (I know, backwords huh!). Many clients will be able to define their minimum supported browsers. You can charge appropriately for building and maintenance costs.
Progressive enhancement is very popular amongst my colleagues. I'm not such a big fan. We're a software house providing bespoke SaaS on a client by client basis. We have a strict policy to make ALL applications progressively enhanced. I find this to be very inefficient and costly. Most clients don't require support for any browsers earlier than IE8, FF4, etc. Most (probably all) clients have full support for JS, ans CSS.
If you fall into option 1 but still feel the need to support the older browsers, consider Google Chrome Frame. This allows older IE versions to render websites using the Chrome engine. This could be part of your graceful degradation message:
Unfortunately, this feature is not supported on your browser. Consider upgrading your browser. If you are using Internet Explorer, install Google Chrome Frame to enable this feature. We would normally apologise for any inconvenience this causes, but it's your own dumb fault for using a rubbish browser.
(Disclaimer: Last sentence modified for humour only!)
To summarise my babbling, build your site based on your users' browser support, not on what you or anyone else thinks may be best practice. Don't fall into the 80-20 trap. It's easy to spend more than 80% of your time, supporting less than 20% of your users.