手记

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

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>
15人推荐
随时随地看视频
慕课网APP

热门评论

  • sgsssssssg

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

查看全部评论