不用bootstrap实现居中适应

奔着响应式布局去学bootstrap,发现用的时候并不好用。写css时用百分比设宽高就可以了

  .main{      
       width: 50%;
    height:60%;
    position: fixed;     
    left:0;
    top:0;
    bottom:0;
    right:0;
    margin:auto;
}

 或者设置

margin:auto;left:0;top:0;right:0;bottom:0;

原文地址:https://www.cnblogs.com/xiaoluoli/p/6023832.html