Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2014
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <div class="canvas_container left">
  2. <div class="canvas_wrap">
  3. <canvas id="original" width="150" height="150"></canvas>
  4. <div class="dropzone first">Drop it here!</div>
  5. </div>
  6. </div>
  7.  
  8. /** Every canvas can only get half of the screen */
  9. div.canvas_container {
  10. max-width: 50%;
  11. width: 50%;
  12. }
  13. /**The inner canvas container should center the other elements **/
  14. div.canvas_container div.canvas_wrap {
  15. position: relative;
  16. height: 100%;
  17. display: inline-block;
  18. /*vertical-align: middle; */
  19. }
  20.  
  21. div.canvas_container canvas {
  22. display: block;
  23. /*position:absolute;*/
  24. top:0px;
  25. left: 0px;
  26. }
  27.  
  28. /**This div should be centered**/
  29. div.canvas_container div.first {
  30. display: block;
  31. margin: auto;
  32. position: absolute;
  33. top: 0; left: 0; bottom: 0; right: 0;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement