博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CSS之各种居中
阅读量:6714 次
发布时间:2019-06-25

本文共 2173 字,大约阅读时间需要 7 分钟。

原文链接:

本博客讨论居中情况设定为总宽度不定,内容宽度不定的情况。(改变大小时,仍然居中)。

特别说明:在元素设置position:absolute;来设置居中效果时,除去博客下介绍的css3方法外,还可以使用负的margin来居中,这样解决了兼容性的问题,但是只适用于宽高已知的情况(因为负的偏移量为元素宽高的一半)。宽高改变时,不再是居中效果。

在这些布局中的子元素,因为其属性设置,都默认为内容宽度。

本博客所有居中的例子,只讨论css的实现,html代码统一如下:

1
2
3
<div class="parent">
<div class="child">demo</div>
</div>

 

1. 水平居中

1.1 inline-block配合text-align

1
2
3
4
5
6
.parent{
text-align: center;
}
.child{
display: inline-block;
}

优点:兼容性非常好,只需要添加只需要在子元素的css中添加*display:inline*zoom:1就可兼容到IE6、7;缺点:内部文字也会水平居中,需消除影响。

1.2 table配合margin

1
2
3
4
.child{
display:table;
margin: 0 auto;
}

优点:设置特别简单,只需对子元素进行设置,支持IE8+,需支持IE6,7时,可更换子元素为表格结构。

1.3 abasolute配合transform

1
2
3
4
5
6
7
8
.parent{
position:relative;
}
.child{
position:absolute;
left:50%;
transform: translateX(-50%);
}

优点:居中元素不对其他元素产生影响。缺点:CSS3新属性支持IE9+,低版本浏览器不支持。

2. 垂直居中

2.1 table-cell配合vertical-align

1
2
3
4
.parent{
display: table-cell;
vertical-align:middle;
}

优点:设置简单,只需对父元素进行设置,兼容到IE8+,需兼容地版本浏览器时,可更换div为表格结构。

2.2 absolute配合tranform

1
2
3
4
5
6
7
8
.parent{
position:relative;
}
.child{
position:absolute;
top: 50%;
transform: translateY(-50%);
}

优点:居中元素不对其他元素产生影响。缺点:CSS3新属性支持IE9+,低版本浏览器不支持。

3. 水平+垂直居中

3.1 inline-block配合text-align加上table-cell配合vertical-align

1
2
3
4
5
6
7
8
.parent{
display: table-cell;
vertical-align:middle;
text-align:center;
}
.child{
display: inline-block;
}

优点:综合前两中方法,兼容性好!支持IE8+,低版本浏览器也好兼容。缺点:设置较为复杂。

3.2 absolute配合transform

1
2
3
4
5
6
7
8
9
.parent{
position: relative;
}
.child{
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}

优点:居中元素不对其他元素产生影响。缺点:CSS3新属性支持IE9+,低版本浏览器不支持。

4. 全能的flex

css3新增布局属性,布局简单,强大,性能略差,只支持IE10+,在移动端使用较多。

4.1 水平居中

1
2
3
4
5
6
7
8
9
/*当父元素设置display: flex;时,子元素为flex-item,默认为内容宽度。*/
.parent{
display: flex;
justify-content: center;
}
/* 在设置子元素为margin: 0 auto;时,可删除父元素的justify-content: center;同样可以达到居中效果*/
/* .child{
margin: 0 auto;
}*/

4.2 垂直居中

1
2
3
4
.parent{
display: flex;
align-items: center;
}

4.3 水平垂直居中

1
2
3
4
5
6
7
8
9
.parent{
display: flex;
justify-content: center;
align-items: center;
}
/*如同flex布局的第一部分一样这里也可以对子元素进行下面的设置:同时删除上面的除去display外的其他属性*/
/* .child{
margin:auto;
} */

转载于:https://www.cnblogs.com/msmailcode/articles/5918929.html

你可能感兴趣的文章
kuangbin专题十二 HDU1078 FatMouse and Cheese )(dp + dfs 记忆化搜索)
查看>>
多行文本超出显示省略号
查看>>
转载~基于比较的排序算法的最优下界为什么是O(nlogn)
查看>>
在本机通过SQL远程操作数据库
查看>>
StringMVC返回字符串
查看>>
Windows完成端口网络模型
查看>>
CSS Hack整理
查看>>
leetcode 28. Implement strStr()
查看>>
nginx 服务器重启命令,关闭 (转)
查看>>
实用的正则表达式
查看>>
Hibernate中Criteria的完整用法
查看>>
LINUX创建用户的命令
查看>>
Spring MVC 学习总结(一)——MVC概要与环境配置 转载自【张果】博客
查看>>
POJ 2728 二分+最小生成树
查看>>
[LeetCode] Best Time to Buy and Sell Stock IV
查看>>
nuxt 2.0采坑计之 (引入静态文件css)
查看>>
I/O编程软件题(Java语言)
查看>>
时序逻辑、组合逻辑,我不再怕你了
查看>>
(三)mybatis之对Hibernate初了解
查看>>
git 分支( branch ) 的基本使用
查看>>