单选题

阅读如下代码:

发布于 2022-03-03 17:12:08

阅读如下代码:
<style type="text/css">
.a, .b, .c {
    box-sizing: border-box
    border: 1px solid
}
.wrap {
    width: 250px
}
.a {
    width: 100px
    height: 100px
    float: left
}
.b {
    width: 100px
    height: 50px
    float: left
}
.c {
    width: 100px
    height: 100px
    display: inline-block
}
</style>

<div class="wrap">
    <div class="a">a</div>
    <div class="b">b</div>
    <div class="c">c</div>
</div>


请问 wrap 这个 div 的高度是多少?



登录后免费查看答案
关注者
0
被浏览
42
知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看