Ich habe folgenden CSS Code:
Code:
div {
position: absolute;
left: 200px;
right: 20px;
}
div.nav {
background-color: #d8d8d8;
position: absolute;
left: -180px;
top: 25px;
width: 150px;
padding: 5px;
border-width: 1px;
border-style: solid;
border-color: #808080;
}
div.admin {
background-color: #d8d8d8;
position: absolute;
left: -180px;
top: 219px;
width: 150px;
padding: 5px;
border-width: 1px;
border-style: solid;
border-color: #808080;
}
div.stats {
background-color: #d8d8d8;
position: absolute;
left: -180px;
top: 350px;
width: 150px;
padding: 5px;
border-width: 1px;
border-style: solid;
border-color: #808080;
}
Kann man den noch irgendwie zusammenfassen? Es kommt ja vieles doppelt vor.