robi2, using CSS to define the body style should work as
deecee said, but any text within the BODY tags that has
a different style will use their own styles instead. For
example, using BODY to make all the text black will affect
everything between the BODY tags, but inside that you can
have another SPAN that defines a word to be red. When you
then view the page, you will see that all the text is black
except for that one red word.
The important thing to remember about CSS is that it uses
inheritance. The higher up you go, the less priority the
style has. The most priority will be the lowest level like
this:
<span style="font-size:18px;">Test</span>. While the 'Test'
text will contain all other styles that were imposed on it
from other sources (from P tags, BODY tags, etc) the
one that will always show is the local span one. It will
override all other font-size styles that were defined on
it, because it has more priority.
I hope that makes sense and wasn't too much babbling
MG