Untitled
By: a guest | Mar 22nd, 2010 | Syntax:
CSS | Size: 1.02 KB | Hits: 67 | Expires: Never
#container {
float: left;
margin: 0;
padding: 0;
width: 900px;
height: 500px;
}
#header {
float:left;
width: 900px;
height:95px;
background-image: url(../../../Stempeluhr_projekt/css/logo.gif);
background-position:left;
background-repeat: no-repeat;
background-color:aqua;
text-align: right;
}
#maincontent {
float:left;
width:750px;
height:400px;
background-color: green;
overflow:auto;
}
#content {
float:left;
width:900px;
height:400px;
}
#navi {
float:left;
background-color: fuchsia;
width: 150px;
height: 400px;
text-align: left;
}
#footer {
float:left;
width: 900px;
height: 20px;
text-align:center;
background-color: blue;
}
#navi a:link{
color:black;
text-decoration: none;
}
#navi a:visited{
color: black;
text-decoration: none
}
#navi a:hover{
color: gray;
text-decoration: none
}
#navi a:active{
color: black;
text-decoration: none
}