DIV居中

  1. <style type="text/css">   
  2. <!--   
  3. div {   
  4. position: absolute;      /*绝对定位*/   
  5. top: 50%;                  /* 距顶部50%*/   
  6. left: 50%;                  /* 距左边50%*/   
  7. height: 200px;  margin-top: -100px;   /*margin-top为height一半的负值*/   
  8.  400px;  margin-left: -200px;    /*margin-left为width一半的负值*/   
  9. }   
  10. -->   
  11. </style>   
  12. <div>css屏幕居中的方法</div> 
摘自:http://fangwei.javaeye.com/blog/442628
原文地址:https://www.cnblogs.com/cr7/p/1826261.html