I want to use the blockquote tag in multiple locations on a site. Not all occurrences will have the same attributes - i.e. on one page the width may be 600px on another it may be 400px.
How much of the styling should be on the stylesheet and how much should be on the HTML document?
For instance, I thought about doing this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<blockquote style="width: 400px;">
...but then what if later I decide I want to change other attributes (background color, border, etc.) - should I just continue with additional declarations in-line?