Advertisement
Guest User

Untitled

a guest
Sep 24th, 2011
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. body {
  2. margin: 0px 0px 0px 0px;
  3. }
  4.  
  5. p{
  6. margin: 0px 0px 0px 0px;
  7. }
  8.  
  9.  
  10. #title {
  11. display: inline-block;
  12. width: 400px;
  13. height: 50px;
  14. margin: 0px 0px 0px 0px;
  15. padding: 0px 0px 0px 0px;
  16. background-color: red;
  17. position: relative;
  18. left: 0px;
  19. right: 0px;
  20. }
  21.  
  22.  
  23. #copres {
  24. display: inline-block;
  25. margin: 0px;
  26. padding: 0px;
  27. width: 200px;
  28. height: 50px;
  29. background-color: black;
  30. position: relative;
  31. left: 0px;
  32. right: 0px;
  33. }
  34.  
  35. #box2 {
  36. width: 180px;
  37. display: inline-block;
  38. height: 50px;
  39. background-color: green;
  40. }
  41.  
  42. #box3 {
  43. width: 180px;
  44. display: inline-block;
  45. height: 50px;
  46. background-color: yellow;
  47. }
  48.  
  49. #box4 {
  50. width: 600px;
  51. display: inline-block;
  52. height: 50px;
  53. background-color: blue;
  54. }
  55.  
  56.  
  57.  
  58.  
  59. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  60. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  61. <head>
  62. <title>Blocks</title>
  63. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  64. <link href="list.css" rel="stylesheet" type="text/css" />
  65. </head>
  66. <body>
  67.  
  68.  
  69. <span id='title' >
  70. &nbsp;
  71. </span> <!-- title -->
  72.  
  73. <span id='copres' >
  74. &nbsp;
  75. </span>
  76.  
  77. <span id='box2' >
  78. &nbsp;
  79. </span>
  80. <div style='clear: both'></div>
  81. <span id='box3' >
  82. &nbsp;
  83. </span>
  84.  
  85. <span id='box4' >
  86. &nbsp;
  87. </span>
  88.  
  89. </body>
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement