div+css居中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" href="css/reset.css">
    <style type="text/css">
        html,body{
            width:100%;
            height:100%;
            position: relative;
            background-color: #7a43b6;
        }
        .container {
            width:85%;
            height: 85%;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            background-color: #00b3ee;
        }
        .content{
            width:85%;
            height:85%;
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            margin: auto;
            background-color: #4cae4c;
        }
    </style>
</head>
<body>
<div class="container">
    <div class="content"></div>
</div>
</body>
</html>

复制直接运行即可

VR虚拟现实

posted on 2016-10-13 09:47  水行者  阅读(199)  评论(0编辑  收藏  举报

导航