Possible to set default text to a color/font using CSS?

Hi... I was wondering if there was a way to set text to a default font/size/color/etc so I don't have to use a altered <H1> or whatever to have my text come out the way I want it to. IF any more explanation needed, let me know.are you talking about this? :
<style>
.h1 {
font-size:10px;
}
</style>No, actually, that's what I want to stay away from... Well not stay away from... K lets see... I have a black background and the text, by default, is black. Is there a way to change that text to some other DEFAULT format so I don't have to create and call a CSS to change it manually?what about this (it's as close as i can get from your description.):<body text="#f5f5f5">Originally posted by rhsunderground
what about this (it's as close as i can get from your description.):<body text="#f5f5f5">
:eek: Presentational markup! Bad Rizzo!Originally posted by Paul Jr
:eek: Presentational markup! Bad Rizzo! he/she wanted to avoid CSS!Originally posted by Stonehenge81
No, actually, that's what I want to stay away from... Well not stay away from... K lets see... I have a black background and the text, by default, is black. Is there a way to change that text to some other DEFAULT format so I don't have to create and call a CSS to change it manually? OK, then override the default text color.html, body { color: #fff }Originally posted by fredmv
html, body { color: #fff } is that different from what i posted?Originally posted by rhsunderground
is that different from what i posted? Other than the fact that mine is valid, I don't think so.Originally posted by fredmv
Other than the fact that mine is valid, I don't think so. damn. i lose.
 
Back
Top