博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
盒子的水平垂直居中几种方法
阅读量:4970 次
发布时间:2019-06-12

本文共 965 字,大约阅读时间需要 3 分钟。

 

<!doctype html>
<html lang="zh-cmn-Hans">
<head>
<meta charset="UTF-8">
<style>
    /*1.利用位置计算,父元素相对定位,子元素绝对定位。涉及的知识很基础,但是有点麻烦*/
    /*.box{
        height: 400px;
        width: 400px;
        position: relative;
       
background-color: red;
    }
    .con{
        height: 100px;
        width: 100px;
       
background-color: blue;
        position: absolute;
        margin: 50% 0 0 50%;
        left: -50px;
        top: -50px;
    }*/
    /*2.利用CSS3的transform,子元素相对定位,向上移动自身的一半*/
    /*.box{
        height: 400px;
        width: 400px;
       
background-color: red;
    }
    .con{
        height: 100px;
        width: 100px;
       
background-color: blue;
        position: relative;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%);
    }*/
    /*3.利用flex布局,简单粗暴,只需对父元素操作*/
    .box{
        height: 400px;
        width: 400px;
        background-color: red;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .con{
        height: 100px;
        width: 100px;
        background-color: blue;
    }
</style>
</head>
<body>
    <div class="box">
        <div class="con"></div>
    </div>
</body>
</html>

 

 

这个:

    
垂直居中

  

 

转载于:https://www.cnblogs.com/shen076/p/6704904.html

你可能感兴趣的文章
笔记:git基本操作
查看>>
生成php所需要的APNS Service pem证书的步骤
查看>>
JavaWeb之JSON
查看>>
HOT SUMMER 每天都是不一样,积极的去感受生活 C#关闭IE相应的窗口 .
查看>>
windows平台上编译mongdb-cxx-driver
查看>>
optionMenu-普通菜单使用
查看>>
2016-2017-2点集拓扑作业[本科生上课时]讲解视频
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
grid网格布局
查看>>