详解 CSS 居中布局技巧(前台肯定要会的)

水平居中元素:
方式一:CSS3 transform
.parent {
position: relative;
}
.child {
position: absolute;
left: 50%:
transform: translateX(-50%);
}
方式二:flex 布局
.parent {
display: flex;
justify-content: center;
}
适用于子元素为浮动,绝对定位,内联元素,均可水平居中。
居中的元素为常规文档流中的内联元素(display: inline)
常见的内联元素有:span, a, img, input, label 等等
.parent {
text-align: center;
}
居中的元素为常规文档流中的块元素(display: block)
常见的块元素:div, h1~h6, table, p, ul, li 等等
方式一:设置 margin
.parent {
width: 100%;
}
.child {
width: 600px;
height: 50px;
margin: 0 auto;
background: #999;
}
方式二:修改为 inline-block 属性
.parent {
text-align: center;
}
.child {
display: inline-block;
}
.child {
width: 100px;
float: left;
position: relative;
left: 50%;
margin-left: -50px;
}
方式一:
.parent {
position: relative;
}
.child {
position: absolute;
width: 100px;
left: 50%;
margin-left: -50px;
}
方式二:
.parent {
position: relative;
}
.child {
position: absolute;
width: 100px;
left: 0;
right: 0;
margin: 0 auto;
}
垂直居中元素:
方式一:CSS3 transform
.parent {
position: relative;
}
.child {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
方式二:flex 布局
.parent {
display: flex;
align-items: center;
}
适用于子元素为浮动,绝对定位,内联元素,均可垂直居中。
.text {
line-height: 200px;
height: 200px;
}
方式一:
.parent {
position: relative;
}
.child{
position: absolute;
top: 50%;
height: 100px;
margin-top: -50px;
}
方式二:
.parent {
position: relative;
}
.child{
position: absolute;
top: 0;
bottom: 0;
height: 100px;
margin: auto 0;
}
垂直居中元素:
div {
width: 100px;
height: 100px;
margin: auto;
position: fixed;
//absolute is ok
top: 0;
right: 0;
bottom: 0;
left: 0;
}
优点:
不仅可以实现在正中间,还可以在正左方,正右方
元素的宽高支持百分比 % 属性值和 min-/max- 属性
可以封装为一个公共类,可做弹出层
浏览器支持性好
.child {
width: 100px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -50px;
margin-top: -50px;
}
特点:
良好的跨浏览器特性,兼容 IE6 – IE7
灵活性差,不能自适应,宽高不支持百分比尺寸和 min-/max- 属性
.child {
width: 100px;
height: 100px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
特点:
内容可自适应,可以封装为一个公共类,可做弹出层
可能干扰其余 transform 效果
.parent {
display: flex;
justify-content: center;
align-items: center;
}
这是 CSS 布局未来的趋势。Flexbox 是 CSS3 新添加属性,设计初衷是为理解决像垂直居中这样的常见布局问题。
text {
height: 100px;
line-height: 100px;
text-align: center;
}
1. 本站所有资源来源于用户上传和网络,如有侵权请邮件联系站长!
2. 分享目的仅供大家学习和交流,您必须在下载后24小时内删除!
3. 不得使用于非法商业用途,不得违反国家法律。否则后果自负!
4. 本站提供的源码、模板、插件等等其他资源,都不包含技术服务请大家谅解!
5. 如有链接无法下载、失效或广告,请联系管理员处理!
6. 本站资源售价只是摆设,本站源码仅提供给会员学习使用!
7. 如遇到加密压缩包,请使用360解压,如遇到无法解压的请联系管理员
开心源码网 » 详解 CSS 居中布局技巧(前台肯定要会的)