Guest User

Untitled

a guest
Jul 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. <div id="content">
  2. <div id="blocks-container">
  3. <div id="left-block">
  4. //In here load the slider block and display in here
  5. </div>
  6. <div id="right-block">
  7. <div>
  8. //In here load the top right block and display in here
  9. </div>
  10. <div>
  11. //In here load the bottom right block and display in here
  12. </div>
  13. </div>
  14. </div>
  15. </div>
  16.  
  17. #content{
  18. text-align:center;
  19. width:100%;
  20. height:auto;
  21. display:inline-block;
  22. }
  23. #blocks-container{
  24. margin:auto;
  25. width: 975px;
  26. height:auto;
  27. display:inline-block;
  28. }
  29. #left-block{
  30. float:left;
  31. width: 760px;
  32. }
  33. #right-block{
  34. float:right;
  35. width: 215px;
  36. }
  37. #right-block > div{
  38. clear:both;
  39. width: 100%;
  40. float:left;
  41. }
Add Comment
Please, Sign In to add comment