Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/ajuta (20-Mar @ 18:08)

Syntax Highlighted Code

  1. body, html {
  2.     margin: 0;
  3.     padding: 0;
  4.     background-color:#999999;
  5. }
  6.  
  7. #container {
  8.     margin: 0 auto;
  9.     width: 900px;
  10. }
  11.  
  12. #header {
  13.     width: 900px;
  14.     height: 121px;
  15. }
  16.  
  17.     #leftheader {
  18.         float: left;
  19.         background: #693 url('img/topleft.gif') no-repeat;
  20.         width: 132px;
  21.         height: 121px;
  22.     }
  23.  
  24.     #middleheader {
  25.         float:left;
  26.         background: #693;
  27.         width: 636px;
  28.         height: 121px;
  29.         background-image:url('img/header.gif');
  30.         background-repeat:no-repeat;
  31.     }
  32.    
  33.     #rightheader {
  34.     float: left;
  35.     background: #693 url('img/topright.gif') no-repeat;
  36.     width: 132px;
  37.     height: 121px;
  38.     }
  39.  
  40. #content {
  41.     clear:both;
  42.     width:900px;
  43.     text-align:left;
  44.     background-image:url('img/background.gif');
  45.     background-repeat:repeat-y;
  46. }
  47.  
  48. #contentleft {
  49.     float:left;
  50.     width:132px;
  51. }
  52.  
  53. #contentmiddle {
  54.     float:left;
  55.     width:636px;
  56.  
  57. }
  58.  
  59. #contentright {
  60.     float:left;
  61.     width:132px;
  62. }
  63.  
  64.  

Plain Code

body, html {
    margin: 0;
    padding: 0;
    background-color:#999999;
}

#container {
    margin: 0 auto;
    width: 900px;
}

#header {
    width: 900px;
    height: 121px;
}

    #leftheader {
        float: left;
        background: #693 url('img/topleft.gif') no-repeat;
        width: 132px;
        height: 121px;
    }

    #middleheader {
        float:left;
        background: #693;
        width: 636px;
        height: 121px;
        background-image:url('img/header.gif');
        background-repeat:no-repeat;
    }
    
    #rightheader {
    float: left;
    background: #693 url('img/topright.gif') no-repeat;
    width: 132px;
    height: 121px;
    }

#content {
    clear:both;
    width:900px;
    text-align:left;
    background-image:url('img/background.gif');
    background-repeat:repeat-y;
}

#contentleft {
    float:left;
    width:132px;
}

#contentmiddle {
    float:left;
    width:636px;

}

#contentright {
    float:left;
    width:132px;
}

Permalink: http://codedumper.com/ajuta