Advertisement
citstudio

Centered Object

Apr 16th, 2012
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.21 KB | None | 0 0
  1. <style type="text/css">
  2.   .centered {
  3.   position: fixed;
  4.   top: 50%;
  5.   left: 50%;
  6.   margin-top: -50px;
  7.   margin-left: -100px;
  8. }
  9.  
  10. </style>
  11. <div class="centered">
  12.   <p>Here is my div content!!</p>
  13.  
  14. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement