Hallo,
body {
background-color:#123456;
margin: 0;
padding: 0;
min-width: 35em; }#menu {
position:absolute;
top:1.5em;
left:1em;
border:1px dashed #111333;
background-color:#667799; }html>body #fixiert {
position: fixed; }.inhalt1 {
border:5px solid #009900;
padding:1em;
margin:2em; }
</style>
ich würds ja ganz anderst machen ^^.
mach nen div-container für navigation:
div#navigation {
position:fixed; <!-- damit die Navigation fest steht -->
left: 0; <!-- damit sie links steht -->
width: 250px; <!-- beliebige breite -->
}
und einen für den inhalt:
div#inhalt {
margin-left: 250px; <!-- siehe width navigation -->
}
Mit freundlichen Grüßen,
Atom Waffel