继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

关于margin-top:的值是百分百比的问题,以及盒子高度百分百问题

幸福拾荒者
关注TA
已关注
手记 6
粉丝 8
获赞 190

css margin 的值是百分百的时候,其值是基于父元素的宽度来计算的,并非是自身的宽度,padding 百分比的取值也是一样的,
css height 的高度百分比是按其父元素的高度来计算的

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        .box{ background: #ccc;border: 1px solid #ccc; width: 900px; height: 300px; }
        .pox{ background: #f0f; width:50%; height: 50%; margin-top: 50%; }
    </style>
</head>
<body>
    <div class="box"> 
      <div class="pox"></div>

    </div>
</body>
</html>
<script type="text/javascript" src='zepto.js'></script>
<script type="text/javascript">
    $(function(){
    console.log($('.pox').css('margin-top'))
    console.log($('.pox').width())
    })
</script>
打开App,阅读手记
15人推荐
发表评论
随时随地看视频慕课网APP

热门评论

  • sgsssssssg

前几天面试的时候,有问过这个问题

查看全部评论