根据 HTML 规范,以下代码中,外层容器 ...
发布于 2022-03-03 14:12:26
根据 HTML 规范,以下代码中,外层容器 .outer 的宽高分别是:
<style>
.outer {
height: 50px
}
.inner {
width: 120px
height: 100px
}
</style>
<div class="outer">
<span class="inner">content</span>
</div>
<style>
.outer {
height: 50px
}
.inner {
width: 120px
height: 100px
}
</style>
<div class="outer">
<span class="inner">content</span>
</div>
登录后免费查看答案
关注者
0
被浏览
15