Advertisement
Guest User

Untitled

a guest
Jul 7th, 2013
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <html>
  2. <style>
  3.  
  4. #parent {
  5. overflow:hidden;
  6. display:block;
  7. }
  8.  
  9. .right {
  10. float: right;
  11. width: 305px;
  12. background: #888;
  13. display:inline-block;
  14. height:495px;
  15. width:305px;
  16. margin-right:90px;
  17. }
  18.  
  19. .left {
  20. overflow: hidden;
  21. background: #ccc
  22. display:inline-block;
  23. margin: 0px 0px 10px 90px
  24. }
  25.  
  26.  
  27. </style>
  28.  
  29. <head>
  30. </head>
  31.  
  32. <body>
  33. <h1>{Title}</h1>
  34.  
  35. <div="parent">
  36.  
  37. {block:Posts}
  38.  
  39. <div class="right">
  40. {block:Caption}
  41. {Caption}
  42. {/block:Caption}
  43. </div>
  44.  
  45. <div class="left">
  46. {block:Photo}
  47. <img src="{PhotoURL-HighRes}" width="800px" height="495" alt="{PhotoAlt}"/>
  48. {/block:Photo}
  49. </div>
  50.  
  51.  
  52. {/block:Posts}
  53.  
  54. </div>
  55.  
  56. </body>
  57. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement