七种CSS方式让一个容器水平垂直居中

2024-08-27 13:18

本文主要是介绍七种CSS方式让一个容器水平垂直居中,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

阅读目录

方法一:position加margin 
方法二: diaplay:table-cell 
方法三:position加 transform 
方法四:flex;align-items: center;justify-content: center 
方法五:display:flex;margin:auto 
方法六:纯position 
方法七:兼容低版本浏览器,不固定宽高

总结

这种css布局平时用的比较多,也是面试题常出的一个题,网上一搜一大丢,不过还是想自己总结一下。

这种方法比较多,本文只总结其中的几种,以便加深印象。

方法一:position加margin

/**html**/

<div class="wrap">

   <div class="center"></div>

</div>

 

/**css**/

.wrap {

   width: 200px;

   height: 200px;

   background: yellow;

   position: relative;

}

.wrap .center {

   width: 100px;

   height: 100px;

   background: green;

   margin: auto;

   position: absolute;

   left: 0;

   right: 0;

   top: 0;

   bottom: 0;

}

兼容性:主流浏览器均支持,IE6不支持

方法二: diaplay:table-cell

<!-- html -->

<div class="wrap">

    <div class="center"></div>

</div>

 

/*css*/

.wrap{

   width: 200px;

   height: 200px;

   background: yellow;

   display: table-cell;

   vertical-align: middle;

   text-align: center;

}

.center{

   display: inline-block;

   vertical-align: middle;

   width: 100px;

   height: 100px;

   background: green;

}

兼容性:由于display:table-cell的原因,IE6\7不兼容

方法三:position加 transform

<!-- html -->

<div class="wrap">

   <div class="center"></div>

</div>

 

/* css */

.wrap {

   position: relative;

   background: yellow;

   width: 200px;

   height: 200px;}

 

.center {

   position: absolute;

   background: green;

   top:50%;

   left:50%;

   -webkit-transform:translate(-50%,-50%);

   transform:translate(-50%,-50%);

   width: 100px;

   height: 100px;

}

兼容性:ie9以下不支持 transform,手机端表现的比较好。

方法四:flex;align-items: center;justify-content: center

<!-- html -->

<div class="wrap">

   <div class="center"></div>

</div>

 

/* css */

.wrap {

   background: yellow;

   width: 200px;

   height: 200px;

   display: flex;

   align-items: center;

   justify-content: center;

}

 

.center {

   background: green;

   width: 100px;

   height: 100px;

}

移动端首选

方法五:display:flex;margin:auto

<!-- html -->

<div class="wrap">

   <div class="center"></div>

</div>

 

/* css */

.wrap {

   background: yellow;

   width: 200px;

   height: 200px;

   display: flex;

}

 

.center {

   background: green;

   width: 100px;

   height: 100px;

   margin: auto;

}

移动端首选

方法六:纯position

<!-- html -->

<div class="wrap">

   <div class="center"></div>

</div>

 

/* css */

.wrap {

   background: yellow;

   width: 200px;

   height: 200px;

   position: relative;

}

/**方法一**/

.center {

   background: green;

   position: absolute;

   width: 100px;

   height: 100px;

   left: 50px;

   top: 50px;

  

}

/**方法二**/

.center {

   background: green;

   position: absolute;

   width: 100px;

   height: 100px;

   left: 50%;

   top: 50%;

  margin-left:-50px;

  margin-top:-50px;

}

兼容性:适用于所有浏览器

方法六中的方法一计算公式如下:

子元素(conter)的left值计算公式:left=(父元素的宽 - 子元素的宽 ) / 2=(200-100) / 2=50px; 
子元素(conter)的top值计算公式:top=(父元素的高 - 子元素的高 ) / 2=(200-100) / 2=50px;

方法二计算公式: 
left值固定为50%; 
子元素的margin-left= -(子元素的宽/2)=-100/2= -50px; 
top值也一样,固定为50%

子元素的margin-top= -(子元素的高/2)=-100/2= -50px;

方法七:兼容低版本浏览器,不固定宽高

<!-- html -->

<div class="table">

   <div class="tableCell">

       <div class="content">不固定宽高,自适应</div>

   </div>

</div>

 

/*css*/

.table {

   height: 200px;/*高度值不能少*/

   width: 200px;/*宽度值不能少*/

   display: table;

   position: relative;

   float:left;

   background: yellow;

}      

 

.tableCell {

   display: table-cell;

   vertical-align: middle;

   text-align: center;        

   *position: absolute;

   padding: 10px;

   *top: 50%;

   *left: 50%;

}

.content {

   *position:relative;

   *top: -50%;

   *left: -50%;

    background: green;

}

暂时总结上面的七种,这种方法太多,其实只要习惯了其中的一两种也就够用了。

总结

如果是移动端,那么用方法四和方法五是比较方便的。而且支持不固定宽高的情况,快、准、狠

也就是用 flex; align-items: center; justify-content: center;

<!-- html -->

<div class="wrap">

   <div class="center"></div>

</div>

 

/* css */

.wrap {

   background: yellow;

   width: 200px;

   height: 200px;

   display: flex;

   align-items: center;

   justify-content: center;

}

 

.center {

   background: green;

   width: 100px;

   height: 100px;

}

或者display:flex;margin:auto;

<!-- html -->

<div class="wrap">

   <div class="center"></div>

</div>

 

/* css */

.wrap {

   background: yellow;

   width: 200px;

   height: 200px;

   display: flex;

}

 

.center {

   background: green;

   width: 100px;

   height: 100px;

   margin: auto;

}

如果是PC端,要考虑兼容性的话。方法六是不错滴,也就是纯position。

<!-- html -->

<div class="wrap">

   <div class="center"></div>

</div>

 

/* css */

.wrap {

   background: yellow;

   width: 200px;

   height: 200px;

   position: relative;

}

/**方法一**/

.center {

   background: green;

   position: absolute;

   width: 100px;

   height: 100px;

   left: 50px;

   top: 50px;  

  

}

/**方法二**/

.center {

   background: green;

   position: absolute;

   width: 100px;

   height: 100px;

   left: 50%;

   top: 50%;

  margin-left:-50px;

  margin-top:-50px;

}

如果PC端的中间的元素高度不固定,那么就用方法七即可,代码就不复制了

这种css元素垂直的如果真的要总结起来,应该有十几二十几种。不过也没必要全部掌握吧,只要大概了解一些,用起来没有副作用就行。

有误之处,欢迎指出


END

原文链接:http://www.cnblogs.com/xianyulaodi/p/5863305.html

这篇关于七种CSS方式让一个容器水平垂直居中的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1111772

相关文章

Mybatis官方生成器的使用方式

《Mybatis官方生成器的使用方式》本文详细介绍了MyBatisGenerator(MBG)的使用方法,通过实际代码示例展示了如何配置Maven插件来自动化生成MyBatis项目所需的实体类、Map... 目录1. MyBATis Generator 简介2. MyBatis Generator 的功能3

Spring核心思想之浅谈IoC容器与依赖倒置(DI)

《Spring核心思想之浅谈IoC容器与依赖倒置(DI)》文章介绍了Spring的IoC和DI机制,以及MyBatis的动态代理,通过注解和反射,Spring能够自动管理对象的创建和依赖注入,而MyB... 目录一、控制反转 IoC二、依赖倒置 DI1. 详细概念2. Spring 中 DI 的实现原理三、

Python数据处理之导入导出Excel数据方式

《Python数据处理之导入导出Excel数据方式》Python是Excel数据处理的绝佳工具,通过Pandas和Openpyxl等库可以实现数据的导入、导出和自动化处理,从基础的数据读取和清洗到复杂... 目录python导入导出Excel数据开启数据之旅:为什么Python是Excel数据处理的最佳拍档

SpringBoot项目启动后自动加载系统配置的多种实现方式

《SpringBoot项目启动后自动加载系统配置的多种实现方式》:本文主要介绍SpringBoot项目启动后自动加载系统配置的多种实现方式,并通过代码示例讲解的非常详细,对大家的学习或工作有一定的... 目录1. 使用 CommandLineRunner实现方式:2. 使用 ApplicationRunne

vue解决子组件样式覆盖问题scoped deep

《vue解决子组件样式覆盖问题scopeddeep》文章主要介绍了在Vue项目中处理全局样式和局部样式的方法,包括使用scoped属性和深度选择器(/deep/)来覆盖子组件的样式,作者建议所有组件... 目录前言scoped分析deep分析使用总结所有组件必须加scoped父组件覆盖子组件使用deep前言

VUE动态绑定class类的三种常用方式及适用场景详解

《VUE动态绑定class类的三种常用方式及适用场景详解》文章介绍了在实际开发中动态绑定class的三种常见情况及其解决方案,包括根据不同的返回值渲染不同的class样式、给模块添加基础样式以及根据设... 目录前言1.动态选择class样式(对象添加:情景一)2.动态添加一个class样式(字符串添加:情

MYSQL行列转置方式

《MYSQL行列转置方式》本文介绍了如何使用MySQL和Navicat进行列转行操作,首先,创建了一个名为`grade`的表,并插入多条数据,然后,通过修改查询SQL语句,使用`CASE`和`IF`函... 目录mysql行列转置开始列转行之前的准备下面开始步入正题总结MYSQL行列转置环境准备:mysq

Linux(Centos7)安装Mysql/Redis/MinIO方式

《Linux(Centos7)安装Mysql/Redis/MinIO方式》文章总结:介绍了如何安装MySQL和Redis,以及如何配置它们为开机自启,还详细讲解了如何安装MinIO,包括配置Syste... 目录安装mysql安装Redis安装MinIO总结安装Mysql安装Redis搜索Red

Java文件上传的多种实现方式

《Java文件上传的多种实现方式》文章主要介绍了文件上传接收接口的使用方法,包括获取文件信息、创建文件夹、保存文件到本地的两种方法,以及如何使用Postman进行接口调用... 目录Java文件上传的多方式1.文件上传接收文件接口2.接口主要内容部分3.postman接口调用总结Java文件上传的多方式1

SSID究竟是什么? WiFi网络名称及工作方式解析

《SSID究竟是什么?WiFi网络名称及工作方式解析》SID可以看作是无线网络的名称,类似于有线网络中的网络名称或者路由器的名称,在无线网络中,设备通过SSID来识别和连接到特定的无线网络... 当提到 Wi-Fi 网络时,就避不开「SSID」这个术语。简单来说,SSID 就是 Wi-Fi 网络的名称。比如