Whenever I tried to make a site letting dreamweaver take care of styles, it all finished being a real mess with lots of unnecesary code, so you finally have to go to the css and edit it manually to optimize your CSS.
In adition to my response, I'd like to point out that a common issue with dreamweaver is for example, that it didn't write the shorthand for each rule I did in the graphic view. But this can be modified since dw2004 I believe, and dw8 has improved a lot when it comes to css. I don't even remember now what dw04 did, but at least for the built in help-tooltips that display code suggestions as you type, it has gotten better (it has updated its data base, so it holds more properties and values than before).
You can edit how dreamweaver handles the shorthand css in the preferences. Shorthand css (for those who ignore) is a smaller way to declare something in css, for example, while declaring border for a table (table or anyother element, just as an example, we have top, right, bottom and left borders) instead of going with each declaration, like:
border-top-color:black;
border-right-color:black;
border-bottom-color:black;
border-left-color:black;
you could go just like this
border-color:black
and you need only one line of code. This is just a small example, and as for borders you can even have a shorter hand way to declare border settings (for the width of the border, the color, and the style of the border):
border:1px solid black;
And what I said is that dreamweaver can be set to write the shorthand while editing in graphic view the style sheet, or the other way around....
Good luck...



