码迷,mamicode.com
首页 > Web开发 > 详细

css在高度未知的情况,水平垂直居中

时间:2017-10-10 20:34:36      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:parent   pos   world   pre   child   width   元素   char   idt   

思路:子元素绝对定位,距离顶部 50%,左边50%,然后使用css3 transform:translate(-50%; -50%)
优点:高大上,可以在webkit内核的浏览器中使用
缺点:不支持IE9以下不支持transform属性

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>未知宽高元素水平垂直居中</title>
</head>
<style>
.parent3{
    position: relative;
    height:300px;
    width: 300px;
    background: #FD0C70;
}
.parent3 .child{
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    transform: translate(-50%, -50%);
}
</style>
<body>
<div class="parent3">
        <div class="child">hello world-3</div>
    </div>
</body>
</html>

 

css在高度未知的情况,水平垂直居中

标签:parent   pos   world   pre   child   width   元素   char   idt   

原文地址:http://www.cnblogs.com/mxdneu/p/7647268.html

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