日期:2014-05-17 浏览次数:20979 次
<!DOCTYPE HTML>
<html>
    <head>
        <meta charset="gb2312" />
        <title></title>
        <style>
            span {
                width:100px; height:100px;
                border:1px solid red;
                position:absolute; left:0; top:0; right:0; bottom:0;
                margin:0 auto;
            }
        </style>
    </head>
    <body>
        <span>123</span>
    </body>
</html>
------解决方案--------------------
<div style="position:fixed;width:100%;height:80px;left:0;bottom:0">
   <div style="position:relative;width:960px;margin:0 auto;height:80px;background:#ccc;display:block;">
        
   </div>
</div>
------解决方案--------------------
span {
       width:100px; height:100px;
       border:1px solid red;
       position:absolute; left:50%;
       margin-left:-50px;/*50%宽度*/
     }
------解决方案--------------------
span {
 width:100px; height:100px;
 border:1px solid red;
 position:absolute;  
 left:50%;top:50%;
 margin: -50px -50px;
 }