水平居中的几种方法(总结)

1.text-align:center(内联或者内联块元素)

适用情况 :父元素是块级元素,子元素是内联或内联块级元素(如文本、图片、inline-block)。

css 复制代码
.parent {
  text-align: center;
}

2.margin: 0 auto (块级元素,需要设定宽度)

适用情况:子元素是块级元素,并且元素有固定宽度。

css 复制代码
.child {
  width: 200px; /* 必须指定宽度 */
  margin: 0 auto;
}

3.flex的justify-content:center(适用于任何元素)

适用情况:适用于任何类型的元素。

css 复制代码
.parent {
  display: flex;
  justify-content: center;
}

4.position:absolute 和 transform (绝对定位元素)

适用情况:子元素是绝对定位元素,父元素需相对定位。

css 复制代码
.parent {
  position: relative;
}

.child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

5.grid的justify-content:center(适用于任何元素)

适用情况:适用于任何类型的元素。

css 复制代码
.parent {
  display: grid;
  justify-content: center;
}

6.display:table 和margin: 0 auto

适用情况:子元素是块级元素,但父元素的宽度不确定或子元素无明确宽度。

css 复制代码
.parent {
  display: table;
  margin: 0 auto;
}

7.float 和 position:relative

适用情况:需要兼容老旧浏览器。

css 复制代码
.parent {
  position: relative;
}

.child {
  float: left;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

8.inline-block和 text-align:center

适用情况:适用于多个块级子元素的水平居中。

css 复制代码
.parent {
  text-align: center;
}

.child {
  display: inline-block;
}

9.inline-flex和justify-content:center

适用情况:用于内联块级元素的水平居中,子元素是行内的 flex 项目。

css 复制代码
.parent {
  display: inline-flex;
  justify-content: center;
}

10.table-cell和text-align:center

适用情况 :在父元素为 table-cell 时,可以通过 text-align 进行居中。

css 复制代码
.parent {
  display: table-cell;
  text-align: center;
}

11.just-self:center(Grid布局)

适用情况:适用于 Grid 布局中的单个网格项目水平居中。

css 复制代码
.parent {
  display: grid;
}

.child {
  justify-self: center;
}

12.text-indent和white-space:nowrap(单文本居中)

适用情况:适用于水平居中文本,尤其是在单行文本的场景下。

css 复制代码
.parent {
  text-align: justify;
  white-space: nowrap;
  text-indent: 50%;
  transform: translateX(-50%);
}
相关推荐
m0_74823408几秒前
Spring Boot教程之三十一:入门 Web
前端·spring boot·后端
Domain-zhuo9 分钟前
如何提高webpack的构建速度?
前端·webpack·前端框架·node.js·ecmascript
前端Hardy12 分钟前
HTML&CSS:惊!3D 折叠按钮
css·3d·html
还是大剑师兰特24 分钟前
面试题:ES6模块与CommonJS模块有什么异同?
前端·es6·大剑师
胡西风_foxww39 分钟前
【ES6复习笔记】数值扩展(16)
前端·笔记·es6·扩展·数值
mosen86841 分钟前
uniapp中uni.scss如何引入页面内或生效
前端·uni-app·scss
白云~️42 分钟前
uniappX 移动端单行/多行文字隐藏显示省略号
开发语言·前端·javascript
沙尘暴炒饭44 分钟前
uniapp 前端解决精度丢失的问题 (后端返回分布式id)
前端·uni-app
政采云技术1 小时前
React前端权限管理思路
前端·react.js
昙鱼1 小时前
springboot创建web项目
java·前端·spring boot·后端·spring·maven