码迷,mamicode.com
首页 > 其他好文 > 详细

不知道宽高,水平-垂直居中显示

时间:2015-04-21 13:10:38      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:web   css3   

1、Css3使用translate属性,使不知道宽度、高度的元素实现水平、垂直居中

Css3代码:

.wrapper{ 
				padding:20px;
				background: orange;
				color: #fff;
				position: absolute;
				top:50%;
				left: 50%;
				-webkit-transform:translate(-50%,-50%); 
				-moz-transform:translate(-50%,-50%);
				-transform:translate(-50%,-50%);
			}

Html代码:

<div class="wrapper">我不知道我的宽度和高是多少,我要实现水平垂直居中</div>

讲解:1、将div设置为绝对定位,并位于窗口的top:50%;left:50%处,

2、translate左、上分别移动-50%,此处是相对于div本身的宽、高进行移动的

上边两条综合可实现水平、垂直居中显示


不知道宽高,水平-垂直居中显示

标签:web   css3   

原文地址:http://blog.csdn.net/comeonstone/article/details/45167589

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!