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

元素居中方法总结

时间:2019-05-30 01:39:45      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:示例   order   height   idt   ott   方法总结   color   居中   通过   

通过给需要居中的元素加入如下属性:使用此种方法,该元素会相对第一个具有定位环境的父元素居中

position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
margin: auto;

示例代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        .fat{
            width: 500px;
            height: 500px;
            border: solid 1px black;
            position: relative;
        }
        .sub{
            width: 100px;
            height: 100px;
            border: solid 1px red;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            margin: auto;
        }
    </style>
</head>
<body>
    <div class="fat">
        <div class="sub"></div>
    </div>
</body>
</html>

 

元素居中方法总结

标签:示例   order   height   idt   ott   方法总结   color   居中   通过   

原文地址:https://www.cnblogs.com/huwt/p/10947197.html

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