0

我对填充比率黑客有点困惑。

它与一个额外的容器一起工作,但如果我简化标记,它的行为方式就不一样了。(高度不同)

.demo-wrapper {
  max-width: 300px; 
}
.demo-child {
  width: 100%;
  padding-bottom: 33.333%;
  border: 2px solid black;
  background: silver;
}

.demo-child.noWrapper {
  width: 300px;
}
<div class="demo-wrapper">
    <div class="demo-child"></div>
</div>
<br />
<div class="demo-child noWrapper"></div>
<!-- no more wrappers yeah -->

4

1 回答 1

0

正如文章中所说:

百分比的填充基于包含块的宽度。

于 2016-07-01T10:32:38.243 回答