Die grundlegene CSS-Datei
html
{
margin:0px;
padding:0px;
height:100%;
width:100%;
overflow:auto;
font:12pt/1.2em arial,helvetica,sans-serif;
}
body
{
background-image:url(grafik/01.png);
}
#container{
margin:0px;
padding:0px;
position:absolute;
top:0%;
left:0%;
width:100%;
height:100%;
border:none;
overflow:auto;
}
.content
{
position:absolute;
top:0%;
left:5%;
width:70%;
border-style:solid;
border-width:1px;
border-color:#0000ff;
padding:10px;
}
.menu
{
margin:0px;
padding:10px;
position:fixed;
right:5%;
top:10%;
width:15%;
height:60%;
background-color:#ffffee;
border-style:solid;
border-width:1px;
}
#banner
{
margin:0px;
padding:10px;
position:fixed;
bottom:3%;
left:3%;
width:90%;
height:8%;
background-color:#ddddff;
border-style:solid;
border-width:1px;
text-align:center;
}
h3#c_Name
{
font-size:16pt;
line-height: 1.2em;
position:relative;
bottom:50%;
}
h3#m_Head
{
position:relative;
top:-8%;
}
div#m_Content
{
position:relative;
top:-8%;
}
zusätzlich dazu
einmal die Datei ie5.css
html,body
{
margin:0px;
padding:0px;
height:100%;
width:100%;
overflow-y: hidden;
font:12pt/1.2em arial,helvetica,sans-serif;
}
.content
{
position:static;
}
#menu
{
position:absolute;
}
#banner
{
position:absolute;
}
und die ie6.css
html,body
{
overflow:auto;
}
.content
{
position:absolute;
}