css+div绝对居中

来源:互联网 发布:glibc malloc源码 编辑:程序博客网 时间:2024/05/01 22:20
<!DOCTYPE html>  <html>  <head>      <title>居中</title>      <meta charset="utf-8"/>      <!-- css 代码 -->      <style type="text/css">          .container {              background: rgba(0,0,0,.3);              width: 400px;              height: 260px;              position: absolute;              left: 50%;              top: 50%;              margin-left: -200px;              margin-top: -130px;              color: #fff;text-align:center;          }      </style>  </head>  <body><div class="container">.container区块 始终显示在页面的中心</div>  </body>  </html>  


0 0
原创粉丝点击