Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 22nd, 2010 | Syntax: CSS | Size: 1.02 KB | Hits: 67 | Expires: Never
Copy text to clipboard
  1. #container {
  2.     float: left;
  3.     margin: 0;
  4.     padding: 0;
  5.     width: 900px;
  6.     height: 500px;
  7. }
  8. #header {
  9.     float:left;
  10.     width: 900px;
  11.     height:95px;
  12.     background-image: url(../../../Stempeluhr_projekt/css/logo.gif);
  13.     background-position:left;
  14.     background-repeat: no-repeat;
  15.     background-color:aqua;
  16.     text-align: right;
  17. }
  18. #maincontent {
  19.     float:left;
  20.     width:750px;
  21.     height:400px;
  22.     background-color: green;
  23.     overflow:auto;
  24. }
  25.  
  26. #content {
  27.     float:left;
  28.     width:900px;
  29.     height:400px;
  30. }
  31. #navi {
  32.     float:left;
  33.     background-color: fuchsia;
  34.     width: 150px;
  35.     height: 400px;
  36.     text-align: left;
  37.  
  38. }
  39. #footer {
  40.     float:left;
  41.     width: 900px;
  42.     height: 20px;
  43.     text-align:center;
  44.     background-color: blue;
  45. }
  46. #navi a:link{
  47.         color:black;
  48.         text-decoration: none;
  49. }
  50.  
  51. #navi a:visited{
  52.         color: black;
  53.         text-decoration: none
  54. }
  55.  
  56. #navi a:hover{
  57.         color: gray;
  58.         text-decoration: none
  59. }
  60.  
  61. #navi a:active{
  62.         color: black;
  63.         text-decoration: none
  64. }