博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css布局:块级元素垂直居中
阅读量:6476 次
发布时间:2019-06-23

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

项目中,我使用的flex布局居多,直接上代码。

定宽:

定位居中(absolute)

html:

css:

.main{  width:400px;  height:200px;  background:#eee;  position:absolute;  left:50%;  top:50%;  margin-left:-200px;  margin-top:-100px;}

html:

css:

body {    height: 100%;}.main{ width: 400px;   height: 200px;   background:#eee;  position:absolute;  top: 0;  left: 0;  bottom: 0;  right: 0;  margin: auto;}

非定宽:

定位居中(absolute+translate)

html:

hello world

css:

.main{  background:#eee;  position:absolute;  left:50%;  top:50%;  transform: translate(-50%,-50%);}

flex布局

html:

        

css:

html,body{    width: 100%;    height: 100%;    display: -webkit-flex;    display: flex;    justify-content:center;    align-items:center;}.container{    width: 400px;    height: 200px;    background: #ccc;}

table

html:

    

css:

html,body{     height: 100%;}.container{    width:100%;    height:100%;            display: table;}.main {    display: table-cell;    vertical-align: middle;}.inner{    width: 400px;    height: 200px;    background: #ccc;    margin:0 auto;}

转载地址:http://mxmko.baihongyu.com/

你可能感兴趣的文章
电影:为人师表
查看>>
Description of security events in Windows 2003/7/2008
查看>>
(笑话)我老公不在家,你快点上来!
查看>>
sql里面的模糊查询 用到通配符 格式如右边:'%"&变量名称&"%'
查看>>
Tsung测试之配置文件
查看>>
C#图像处理:截图程序(包含鼠标)
查看>>
DotNetBar for Windows Forms 12.7.0.10_冰河之刃重打包版原创发布-带官方示例程序版
查看>>
HTML save data to CSV or excel
查看>>
python库参考学习网址
查看>>
微信小程序之数独挑战九宫格
查看>>
海量数据处理方法总结
查看>>
通过LinQ查询字符出现次数
查看>>
【算法导论】第五章
查看>>
old version tortoisesvn
查看>>
PIG之 Hadoop 2.7.4 + pig-0.17.0 安装
查看>>
想看《笑傲江湖》的请戳进来
查看>>
ADO.NET 连接池理解
查看>>
JavaScript for in的缺陷
查看>>
Win7下BootCamp蓝屏问题解决方案二
查看>>
C#代码备份还原MSSQL数据库
查看>>