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

    方法一:

    1、代码:

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

    方法二:

    1、代码:

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

    方法三:

    1、代码:

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

    方法四:

    1、代码:

    <div style="200px;height:200px; border:2px solid #000;position:relative;">
    <div style="100px;height:100px;margin:auto;position:absolute;left:50%;top:50%;margin-left: -50px;margin-top:-50px;background-color: red;"></div>
    </div>
  • 相关阅读:
    ASP.NET Core 中的配置
    依赖注入简介
    Authoriztion Code Flow
    建立IdentityServer项目
    OAuth2 OpenID Connect概述
    Asp.Net Core 项目运行部署到发布
    javascript Template tmpl
    webform ajax 异步请求
    hosts 文件
    webform 使用富文本编辑器
  • 原文地址:https://www.cnblogs.com/fps2tao/p/9077130.html
Copyright © 2011-2022 走看看