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

margin取百分值

时间:2018-03-07 10:33:56      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:就会   post   col   ima   inf   span   parent   style   元素   

当margin的值为百分值时,与其父元素的宽度有关:

<style type="text/css">
    *{
        padding: 0;
        margin:0;
    }
    .parent{
        height:200px;
        width:500px;
        margin:0 auto;
        background-color: red;
    }
    .parent div{
        margin:10%;
        background-color: green
    }
</style>

<div class="parent">
    <div>HTML</div>
</div>

 

技术分享图片

你会发现,父元素距离上面也有50px,将父元素设置overflow:hidden 就会消除

margin取百分值

标签:就会   post   col   ima   inf   span   parent   style   元素   

原文地址:https://www.cnblogs.com/DB-IT/p/8520353.html

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