dann machs so:
Code:
BODY, P, DIV, TD {
color: black;
font-family: Verdana, Helvetica, sans-serif;
font-weight: bold;
font-size: 11pt;
}
BODY {
background-color: #FFF;
}
du kannst für jedes html-tag eigene sachen definieren, und noch dazu klassen und id's
z.B.
css:
Code:
H3.rot { color: #F00; }
H3.schwarz { color: #000; }
H3.blau { color: #00F; }
#box{
background-color: #CCC;
color: #F0F;
border: 2px solid #FFF;
}
html:
Code:
<h3 class="rot">Rote Überschrift</h3>
<h3 class="blau">Blaue Überschrift</h3>
<div id="box">
Text text text in the BOX ... :)
</p>
</div>
HTH