1. .parent{
    2. position: relative;
    3. .child{
    4. position: absolute;
    5. width: 200px;
    6. height: 200px;
    7. top: 50%;
    8. left: 50%;
    9. transform: translate(-50%,-50%);
    10. }
    11. }

    兼容低版本ie浏览器写法
    transform属性目前支持的浏览器 Safari 3.1+、 Chrome 8+、Firefox 4+、Opera 10+、IE9+;

    1. .parent{
    2. position: relative;
    3. .child{
    4. position: absolute;
    5. width: 200px;
    6. height: 200px;
    7. top: 50%;
    8. left: 50%;
    9. margin-left: -100px;
    10. margin-top: -100px;
    11. }
    12. }