如何在 CSS 中将 Div 居中

2024-09-21 09:23:02 编辑:抖狐科技 来源:摘自互联网

如何在 css 中将 p 居中

弹性盒:

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

登录后复制

网格

.container {
  display: grid;
  place-items: center;
  height: 300px;
}

登录后复制

弹性保证金

.container {
  display: flex;
  height: 300px;
}
.centered-p {
  margin: auto;
}

登录后复制

绝对定位

.container {
  position: relative;
  height: 300px;
}
.centered-p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

登录后复制

自动保证金

.container {
  height: 300px;
}
.centered-p {
  width: 200px;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translatey(-50%);
}

登录后复制

网格模板

.container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  height: 300px;
}
.centered-p {
  grid-column: 2;
  grid-row: 2;
}

登录后复制

以上就是如何在 CSS 中将 Div 居中的详细内容,更多请关注抖狐科技其它相关文章!

本站文章均为抖狐网站建设摘自权威资料,书籍,或网络原创文章,如有版权纠纷或者违规问题,请即刻联系我们删除,我们欢迎您分享,引用和转载,我们谢绝直接复制和抄袭!感谢...
我们猜你喜欢