Jay: keine reaktion auf quelltextänderungen

Beitrag lesen

CSS:

@charset "utf-8";
/* CSS Document */

#banner {
    height: 80px;
}
#links {
    position:static;
    width: 30%;
 top:80px;
 left:0px;
}
#mitte {
    position:static;
    width: 69%;
 left: 150px;
 top: 80px;
}

PHP:
<?php
    error_reporting(E_ALL);
    include "inc/config.php";
    echo "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n";
    echo "         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n";
    echo "<html>\n";
    echo "    <head>\n";
    echo "        <title>Meine Seite</title>\n";
    echo "        <link rel="stylesheet" type="text/css" href="page.css" />\n";
    echo "        <meta http-equiv="Content-Type"
                        content="text/html; charset=ISO-8859-1" />\n";
    echo "    </head>\n";
    echo "    <body>\n";

echo "        <div id="root">\n";
    echo "            <div id="banner">\n";
    include "banner.php";
    echo "            </div>\n";
    echo "            <div id="links">\n";
    include "menu.php";
    echo "            </div>\n";
    echo "            <div id="mitte">\n";
    include "inhalt.php";
    echo "            </div>\n";
    echo "            <br style="clear:both;" />\n";
    echo "       </div>\n";

echo "    </body>\n";
    echo "</html>\n";
?>