绝对定位Absolute实现区块居中

来源:互联网 发布:知乎为什么这么吹东晋 编辑:程序博客网 时间:2024/05/16 02:32

<html>

 <head>
 <title>absolute设置区块绝对居中</title>
 
 <style>
 
    #one {
 height:200px;
 width:300px;
 background:#FF0000;
 position:absolute;
 left:50%;
 top:50%;
 margin-left:-100px;
 margin-top:-150px;
 
 
 
 </style>
 
 
 
 </head>
 
 
 
 <body>
 
  
 
 
 <DIV id="one">
 
 </DIV>
 
 
 
  
 </body>


</html>