Share Pastebin
Guest
Public paste!

Untitled

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