b-ellanna: Hilfe, css background-color wird nicht dargestellt

Beitrag lesen

Hallo,
ich habe z.Z folgendes problem: das css stylesheet das ich einfach aus der selfhtml dokumentation herauskopiert habe funktioniert nur teilweise! Ich bekomme den Hintergrund nicht farbig dargestellt- woran liegt das??
Antworten gerne auch als Email!
hier das css und das dazugehörige html:

<style type="text/css">
<!--
/* CSS Style-Sheet-Specifications       */
/* created with (X)HTML-Format */
/* http://www.homepagehelper.de */
//-->
body { background-color:#FFFFCC;
       margin-left:100px; }
* { color:blue; }
h1 { font-size:300%;
     color:#FF0000;
     font-style:italic;
     border-bottom:solid thin black; }
p,li  { font-size:110%;
        line-height:140%;
        font-family:Helvetica,Arial,sans-serif;
        letter-spacing:0.1em;
        word-spacing:0.3em; }
</style>

<html>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Top</title>
<meta name="description" content="">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="generator" content="(X)HTML-Format">
</head>
<body>
normaler text<p>
<a href="_blank">link</a>
</body>
</html>