将图片/Div 水平垂直居中

Avatar of Chris Coyier
Chris Coyier
.center {
   width: 300px;
   height: 300px;
   position: absolute;
   left: 50%;
   top: 50%; 
   margin-left: -150px;
   margin-top: -150px;
}

负边距正好是高度和宽度的一半,这将元素拉回到完美的中心。仅适用于具有固定高度/宽度的元素。