Das ist die Seite:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
<head>
<script type="text/javascript"></script>
<style type="text/css" title="currentStyle" media="screen">@import "index_test.css";</style>
</head>
<body>
<div id="container"></div>
</body>
</html>
...und das die CSS-Datei:
body {
background-color: rgb(88,91,103);
margin:0px;
text-align:center;
}
#container { width:760px;
height:100%;
background-color:rgb(1,1,1);
border:1px solid #ffcc66;
margin:auto;
text-align:left;
}
|