Advertisement
Guest User

Untitled

a guest
Aug 30th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <title>Trains, Planes, Automobiles, and Boats</title>
  4. <meta charset="UTF-8">
  5. <style type="text/css" media="screen">
  6. html, body { background:#ddd; margin:0; padding:0; height:100%; }
  7. #foo { position:absolute; left:5%; width:60%; top:5%; height:80%; background:#dcc; }
  8. #bar { position:absolute; left:70%; width:25%; top:5%; height:80%; background:#cbd; vertical-align: middle; }
  9.  
  10. .fullwidth { width: 100%; vertical-align: middle; }
  11.  
  12. .vcenter {
  13. display: block;
  14. margin: 0 auto;
  15. }
  16.  
  17. </style>
  18. </head>
  19. <body>
  20. <div id="foo">
  21. <div class="vcenter">
  22. <img class="fullwidth" src="https://openclipart.org/image/800px/svg_to_png/19623/philrich123-A380.png" />
  23. </div>
  24. </div>
  25. <div id="bar">
  26. <img class="fullwidth" src="https://openclipart.org/image/800px/svg_to_png/4703/ryanlerch-Steam-Train-Engine.png" />
  27. <img class="fullwidth" src="https://openclipart.org/image/800px/svg_to_png/19623/philrich123-A380.png" />
  28. <img class="fullwidth" src="http://openclipart.org/image/800px/svg_to_png/74557/rally-car.png" />
  29. <img class="fullwidth" src="https://openclipart.org/image/800px/svg_to_png/196201/Model-T-Ford.png&disposition=attachment" />
  30. <img class="fullwidth" src="https://openclipart.org/image/800px/svg_to_png/24418/Jarno-Boat-1.png&disposition=attachment" />
  31. </div>
  32. </body>
  33.  
  34. #bar{
  35. overflow: scroll;
  36. }
  37.  
  38. position: relative;
  39. top: 50%;
  40. transform: translateY(-50%);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement