Advertisement
far_light

css, 3.7

Mar 9th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1. body {
  2.     background-color: white;
  3.     background-image:  url("image/back.png");
  4.     background-repeat: repeat;
  5.     background-attachment: fixed;
  6.     background-position: top left;
  7.    
  8.     width: 100%;
  9.     height: 100%;
  10.    
  11.     margin: 0px;
  12.     padding: 0px;
  13. }
  14.  
  15. table {
  16.     width: 100%;
  17. }
  18.  
  19. td, tr {
  20.     vertical-align: top;
  21. }
  22.  
  23. #menu {
  24.     margin: 0px;
  25.     padding: 0px;
  26.    
  27.     width: 100%;
  28.     height: 38px;
  29.    
  30.     background-image: url("image/menu.png");
  31.     background-repeat: repeat;
  32.     background-attachment: fixed;
  33.     background-position: top left;
  34. }
  35.  
  36. #tab-center {
  37.     background-image: url("image/center.png");
  38.     background-repeat: repeat;
  39.     background-attachment: fixed;
  40.     background-position: top left;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement