zoukankan      html  css  js  c++  java
  • 小的div在大的div中垂直居中

    方法一:

    1、代码:

    1 <div style="200px;height:200px;border:solid blue;position:relative;">
    2     <div style="100px;height:100px;margin: auto;  position: absolute;  top: 0; left: 0; bottom: 0; right: 0; background: red;"></div>
    3 </div>

    2、效果图:

    方法二:

    1、代码:

    1 <div style="200px;height:200px;border:2px solid #000;display:table-cell;vertical-align:middle;text-align: center;">
    2     <div style="100px;height:100px;display:inline-block;"></div>
    3 </div>

    2、效果图:

    方法三:

    1、代码:

    1 <div style="200px;height:200px; border:2px solid #000;display:flex;justify-content:center;align-items:center;">
    2     <div style="100px;height:100px;"></div>
    3 </div>

    2、效果图:

    方法四:

    1、代码:

    1 <div style="200px;height:200px; border:2px solid #000;position:relative;">
    2     <div style="100px;height:100px;margin:auto;position:absolute;left:50%;top:50%;margin-left: -50px;margin-top:-50px;"></div>
    3 </div>

    2、效果图:

  • 相关阅读:
    设计模式-适配器模式
    设计模式-模板方法模式
    设计模式-策略模式
    spring-消息
    spring-集成redis
    spring-mvc高级技术
    spring-AOP
    restful规范
    十一,装饰器详解
    十,函数对象,嵌套,名称空间与作用域,闭包函数
  • 原文地址:https://www.cnblogs.com/turnip/p/11313023.html
Copyright © 2011-2022 走看看