复用 padding-bottom 可实现一块区域在窗口尺寸变化使始终保持自适应。对于响应式布局中的图片或视频来说比较有用。
<div style="width: 100%; position: relative; padding-bottom: 56.25%;"> <div style="position: absolute; left: 0; top: 0; right: 0; bottom: 0;background-color:yellow;"> this content will have a constant aspect ratio that varies based on the width. </div> </div> 16:9 容器的效果 其中
以下是常用比例与对应的百分比值: aspect ratio | padding-bottom value --------------|---------------------- 16:9 | 56.25% 4:3 | 75% 3:2 | 66.66% 8:5 | 62.5% 相关资源 |
原文地址:https://www.cnblogs.com/Wayou/p/css_keep_ratio_by_padding_bottom.html
时间: 2024-12-18 13:41:08