在查看了 Zurb Foundation 的代码后,我注意到他们正在使用这样的 CSS 方法来允许响应式方形 div:
.div{
position:relative;
width:33%;
height:0;
padding-bottom:33%;
}
.divInner{
position:absolute;
width:100%;
height:100%;
}
我一直在一些较新的项目中使用这种方法(仍在私人开发中),但不知道浏览器对它的支持,也不知道为什么高度甚至能够模仿宽度大小。有谁知道为什么会这样?谢谢!