Thursday, September 8, 2011

How to center an object exactly in the center from CSS-Tricks.com

.centered {
  position
: fixed;
  top
: 50%;
  left
: 50%;
  margin
-top: -50px;
  margin
-left: -100px;
}

http://css-tricks.com/320-quick-css-trick-how-to-center-an-object-exactly-in-the-center/

1 comment:

lingmaaki said...

try this code...

.exactCenter {
width:200px;
height:200px;
position: fixed;
background-color: #00FF00;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -100px;
}


More...CSS Centering Div