居中对齐的几种方法

简介: 居中对齐的几种方法
看面试题,自己总结并实践了下,加深印象。如果这篇文章 对你有帮助,请不要吝啬你的赞。😃

水平居中

div设置一个宽度,再添加 margin: 0 auto

必须要添加宽度,只对块级元素有效

<style>
  .container {
    width: 400px;
    height: 400px;
    background-color: pink;
    color: #fff;
  }

  .box {
    width: 100px;
    height: 100px;
    background-color: purple;
    margin: 0 auto;
  }

  .inline-block-box {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-color: purple;
    margin: 0 auto;
  }
</style>

<div class="container">
  <div class="box">块级元素</div>
  <span class="inline-block-box">行内块元素</span>
  <br />
  <span>行内元素</span>
</div>

image-20220324213321588


给父元素添加 text-aligin: center

只对行内块元素、行内元素有效

.container {
  width: 400px;
  height: 400px;
  background-color: pink;
  color: #fff;
  text-align: center;
}

.box {
  width: 100px;
  height: 100px;
  background-color: purple;
}

.inline-block-box {
  display: inline-block;
  width: 100px;
  height: 100px;
  background-color: purple;
}

span {
  background-color: skyblue;
}

image-20220324214157484


水平垂直居中

计算法

父元素跟着子元素 margin-top 移动问题

开始之前,先看下一个小问题

下面的例子中,我们想要让子元素离父元素有距离

<style>
  .container {
    width: 600px;
    height: 400px;
    background-color: pink;
    color: #fff;
  }

  .box {
    width: 100px;
    height: 100px;
    background-color: purple;
    margin: 150px auto;
  }
</style>

<div class="container">
  <div class="box"></div>
</div>

image-20220324220516244


结果,子元素并没有外边距效果,反而是父元素出现了外边距的效果。

这是因为,根据规范,父元素的子元素的上边距( margin-top),如果碰不到有效的 border或者 padding,就会一层一层的找自己的祖先元素,直到找到祖先元素有有效的 borderborder为止


解决方案:

  1. 给父元素添加 padding-top
  2. 给父元素添加 border-top
  3. 给父元素添加 overflow: hidden(推荐)
.container {
  width: 600px;
  height: 400px;
  background-color: pink;
  color: #fff;

  /* padding-top: 1px; */
  /* border-top: 1px solid transparent; */
  overflow: hidden;
}


开始

首先 margin左右可以直接设置 auto实现居中,但是的上下不行。

计算法:margin上下值 = (父元素高度-子元素高度)/2

在这个例子中,父元素的高度为 400px,子元素的高度为 100px,所以 margin上下值设置为 150px

.container {
  width: 600px;
  height: 400px;
  background-color: pink;
  color: #fff;
  overflow: hidden;
}

.box {
  width: 100px;
  height: 100px;
  background-color: purple;
  margin: 150px auto;
}

image-20220324222200326


绝对定位四 0 法

设置四个方向都为 0,然后设置 margin auto,因为宽高固定,所以对应方向平分,可以实现水平垂直居中

.container {
  position: relative;
  width: 600px;
  height: 400px;
  background-color: pink;
  color: #fff;
}

.box {
  position: absolute;
  width: 200px;
  height: 100px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: purple;
}


绝对定位 + 计算法( margin负值)

.container {
  position: relative;
  width: 600px;
  height: 400px;
  background-color: pink;
  color: #fff;
}

.box {
  position: absolute;
  width: 200px;
  height: 100px;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -100px;
  /* margin-top、margin-left 分别是该子元素高宽的一半(负值)*/
  background-color: purple;
}


绝对定位 + transform

.container {
  position: relative;
  width: 600px;
  height: 400px;
  background-color: pink;
  color: #fff;
}

.box {
  position: absolute;
  width: 200px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: purple;
}


flex 布局法

.container {
  display: flex;
  width: 600px;
  height: 400px;
  background-color: pink;
  /* 垂直居中 */
  align-items: center;
  /* 水平居中 */
  justify-content: center;
}

.box {
  width: 200px;
  height: 100px;
  background-color: purple;
}


对于宽高不定的元素,后面两种方法(绝对定位+ transform flex布局法),可以实现元素的水平垂直居中。


参考资料:

目录
相关文章
|
6月前
|
前端开发 开发者 容器
|
9天前
|
UED
使用约束布局实现居中对齐效果
【10月更文挑战第24天】我们可以看到使用约束布局实现居中对齐并不是一件难事。只要掌握了基本的方法和技巧,结合具体的场景进行灵活运用,就能轻松地实现各种居中对齐效果。在实际开发中,要不断实践和总结经验,以便更好地发挥约束布局的优势,为用户带来更优质的界面体验。
13 1
|
3月前
段落标记<p>的对齐属性
【8月更文挑战第30天】段落标记<p>的对齐属性
34 0
|
4月前
|
前端开发
css 图标和文字对齐 —— 垂直居中对齐,任意位置对齐
css 图标和文字对齐 —— 垂直居中对齐,任意位置对齐
97 2
|
5月前
|
前端开发 UED
深入理解CSS中的文本对齐方式:水平对齐与垂直对齐
深入理解CSS中的文本对齐方式:水平对齐与垂直对齐
|
4月前
|
前端开发 容器
css 动态文本对齐自适应 — 文本宽度小于容器宽度时居中对齐,文本宽度大于容器宽度时居左对齐
css 动态文本对齐自适应 — 文本宽度小于容器宽度时居中对齐,文本宽度大于容器宽度时居左对齐
39 2
|
4月前
|
前端开发 容器
CSS【详解】对齐 (含文本垂直对齐,文本水平对齐、单行文本垂直居中、多行文本垂直居中、6 种方案块级元素水平垂直居中 、7 种方案图片水平垂直居中、文本自适应对齐、图标和文本对齐,图片和文本对齐等)
CSS【详解】对齐 (含文本垂直对齐,文本水平对齐、单行文本垂直居中、多行文本垂直居中、6 种方案块级元素水平垂直居中 、7 种方案图片水平垂直居中、文本自适应对齐、图标和文本对齐,图片和文本对齐等)
65 0
|
4月前
|
前端开发 C++ 容器
CSS【详解】居中对齐 (水平居中 vs 垂直居中)
CSS【详解】居中对齐 (水平居中 vs 垂直居中)
45 0
|
前端开发 容器
面试官:居中对齐有哪些实现方式?
面试官:居中对齐有哪些实现方式?
66 0