如何让div居中?

ID:15310 / 打印

如何让div居中?

如何在 css 中将 div 居中

使div居中是最不可能的事情

1. 使用 flexbox 居中

flexbox 是一种垂直和水平居中内容的现代方式:

.container {     display: flex;     justify-content: center;     align-items: center;     height: 100vh; } 
<div class="container">     <div class="centered-div">centered content</div> </div> 

2. 网格居中

css grid 还可以居中内容:

.container {     display: grid;     place-items: center;     height: 100vh; } 
<div class="container">     <div class="centered-div">centered content</div> </div> 

3. 绝对定位居中

您可以使用绝对定位将 div 居中:

.container {     position: relative;     height: 100vh; } .centered-div {     position: absolute;     top: 50%;     left: 50%;     transform: translate(-50%, -50%); } 
<div class="container">     <div class="centered-div">centered content</div> </div> 

4. 使用 margin auto 居中

对于简单的水平居中,请使用 margin: auto:

.centered-div {     width: 50%;     margin: 0 auto; } 
<div class="centered-div">centered content</div> 

5. 使用 margin auto 居中

对于内联或内联块元素:

.container {     text-align: center;     line-height: 100vh; /* full viewport height for vertical centering */ } .centered-div {     display: inline-block;     vertical-align: middle;     line-height: normal; } 
<div class="container">     <div class="centered-div">centered content</div> </div> 
上一篇: CSS 是一首非常美丽的歌曲
下一篇: ro CSS 技巧会让你大吃一惊

作者:admin @ 24资源网   2024-10-18

本站所有软件、源码、文章均有网友提供,如有侵权联系308410122@qq.com

与本文相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。