码迷,mamicode.com
首页 > 其他好文 > 详细

如何实现固定宽高的DOM元素的水平垂直居中

时间:2016-04-26 01:47:14      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

效果:

技术分享

实现代码1:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        body{margin: 0; padding: 0;}
        #div1{
            margin-top: 100px;
            margin-left: 150px;
            width: 300px;
            height: 300px;
            background-color: red;
            position: relative;
        }
        #div2{
            width: 120px;
            height: 120px;
            background-color: black;
            position: absolute;
            /*(300-120)/2/300*/
            top: 30%;
            left: 30%;
        }
    </style>
</head>
<body>
    <div id="div1" class="classname">
        <div id="div2" class="classname">
        </div>
    </div>
</body>
</html>

实现代码2:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        body{margin: 0; padding: 0;}
        #div1{
            margin-top: 100px;
            margin-left: 150px;
            width: 300px;
            height: 300px;
            background-color: red;
        }
        #div2{
            width: 120px;
            height: 120px;
            background-color: black;
            /*(300-120)/2/300=30%*/
            position: relative;
            top: 30%;
            left: 30%;
        }
    </style>
</head>
<body>
    <div id="div1" class="classname">
        <div id="div2" class="classname">
        </div>
    </div>
</body>
</html>

实现代码3:

如何实现固定宽高的DOM元素的水平垂直居中

标签:

原文地址:http://www.cnblogs.com/arvintang/p/5433390.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!