CSS 水平,垂直,水平垂直居中方案——持续更新
以下是CSS实现元素水平、垂直、水平垂直居中的几种方法:
- 使用Flexbox居中:
.center-flexbox {
display: flex;
justify-content: center;
align-items: center;
}
- 使用Grid布局居中:
.center-grid {
display: grid;
place-items: center;
}
- 使用绝对定位和transform方法:
.center-absolute {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
- 使用绝对定位和margin auto方法:
.center-margin {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
这些方法可以根据不同的布局场景和浏览器兼容性需求选择使用。
评论已关闭