总结: CSS的居中操作

2023-02-05  本文已影响0人  kevin5979

文字图片的居中

text-align: center

<div class="center">
  <span class="center_text">123</span>
</div>
.center{
  text-align:center;
}
center_text{
  display:inline-block;
  width:500px
}

margin: 0 auto

<div class="center">
  <span class="center_text">
    块级元素 + 设置高度 + margin: 0 auto;
 </span>
</div>
.center_text {
  display: block;
  width: 500px;
  margin: 0 auto;
}

块级标签元素的居中

脱离文档流的居中方式

<div class="mask">
 <div class="content">我是要居中的板块,</div>
</div>
.mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
}

.content {
  display: block;
  position: fixed;
  width: 666px;
  height: 400px;
  top: 50%;
  left: 50%;
  margin-left: -333px;
  margin-top: -200px;
  /* transform: translate(-50%, -50%); */
  z-index: 2;
  background-color: #fff;
}

使用css3计算的方式居中元素calc

<div class="mask">
 <div class="content">我是要居中的板块,</div>
</div>
.mask {
  position: relative;
  width: 100vw;
  height: 100vh;
  border: 1px solid #ccc;
}

.content {
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 150px);
  width: 300px;
  height: 100px;
  border: 1px solid #000;
}

  今天是10月1号,国庆节,我起了个大早,忘记了今天不上班,刚刚去看了好声音,真不错,出门剪了个不漂亮的发型🙃 ,还吃了炸鸡,然后,然后就上火长痘痘了,ε=(´ο`*)))唉,.最后祝大家国庆快乐,祝我们祖国越来越强大 👍!!!

<iframe frameborder="no" border="0" marginwidth="0" marginheight="0" width=330 height=86 src="//music.163.com/outchain/player?type=2&id=1851244378&auto=1&height=66"></iframe>

<font size="2">最后更新于 2021-10-1</font>

上一篇下一篇

猜你喜欢

热点阅读