Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. In your <style>, paste this property:
  2. .centerObject {
  3. width: 640px;
  4. height: 480px;
  5.  
  6. position: absolute;
  7. top: 50%;
  8. left: 50%;
  9.  
  10. margin-left: -XXXpx; /* the width of your table divided by 2 */
  11. margin-top: -XXXpx; /* the height of your table divided by 2 */
  12. }
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19. Then, in your <body>, paste this:
  20. <div class="centerObject">
  21. PUT YOUR TABLE CODE IN HERE
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement