css垂直居中实现代码
程序员文章站
2022-04-12 23:53:14
...
本文主要和大家分享css垂直居中实现代码,希望本文css代码能帮助到大家。
1.如果是单行文本, line-height 的值和height相等
案例如下:
.verticle{ height: 100px; line-height: 100px;}
2.已知宽度和高度的元素,采用绝对定位
案例如下:
.container { position: relative; }.vertical { width : 300px; /*子元素的宽度*/ height: 300px; /*子元素高度*/ position: absolute; top:50%; /*父元素高度50%*/ left: 50%; margin-left: -150px; margin-top: -150px; /*自身高度一半*/}
3.未知宽度和高度的元素,采用css3的旋转
案例如下:
.container { position: relative; }.vertical { position:absolute; top: 50%; left:50%; transform:translate(-50%,-50%);}
4.css3的弹性盒模型
案例如下:
.content{ display:flex; justify-content: center; /*子元素水平居中*/ align-items: center; /*子元素垂直居中*/}
5.模拟表格布局,缺点是IE6,7不兼容
案例如下:
.container { display: table;}.content { display: table-cell; vertical-align: middle; }
相关推荐:
以上就是css垂直居中实现代码的详细内容,更多请关注其它相关文章!
下一篇: MySQL数据文件收缩问题_MySQL
推荐阅读
-
CSS之“绝对定位”的盒子使用margin:0px auto;不能实现水平居中的解决方案
-
CSS3实现的鼠标悬浮开门关门效果代码实例_html/css_WEB-ITnose
-
css定位练习“十字架“之水平垂直居中_html/css_WEB-ITnose
-
CSS实现的兼容所有浏览器的div悬浮在网页一侧的代码_html/css_WEB-ITnose
-
HTML-移动端如何使用css让百分比布局的弹窗水平和垂直方向上居中_html/css_WEB-ITnose
-
css如何在菜单上实现对勾?(代码)
-
使用JQuery和CSS模拟超链接的用户单击事件的实现代码_jquery
-
使用box-shadow属性实现圆角效果代码实例_html/css_WEB-ITnose
-
css实现聚光灯效果的代码分享
-
JQuery+CSS提示框实现思路及代码(纯手工打造)_jquery