?yb? 2009-09-29 23:11 采纳率: 100%
浏览 417
已采纳

用 CSS 维护 div 的宽高比

I want to create a div that can change its width/height as the window's width changes.

Are there any CSS3 rules that would allow the height to change according to the width, while maintaining its aspect ratio?

I know I can do this via JavaScript, but I would prefer using only CSS.

div keeping aspect ratio according to width of window

转载于:https://stackoverflow.com/questions/1495407/maintain-the-aspect-ratio-of-a-div-with-css

  • 写回答

20条回答 默认 最新

  • 斗士狗 2012-05-04 01:19
    关注

    Just create a wrapper <div> with a percentage value for padding-bottom, like this:

    div {
      width: 100%;
      padding-bottom: 75%;
      background: gold; /** <-- For the demo **/
    }
    <div></div>

    It will result in a <div> with height equal to 75% of the width of its container (a 4:3 aspect ratio).

    This relies on the fact that for padding :

    The percentage is calculated with respect to the width of the generated box's containing block [...] (source: w3.org, emphasis mine)

    Padding-bottom values for other aspect ratios and 100% width :

    aspect ratio  | padding-bottom value
    --------------|----------------------
        16:9      |       56.25%
        4:3       |       75%
        3:2       |       66.66%
        8:5       |       62.5%
    

    Placing content in the div :

    In order to keep the aspect ratio of the div and prevent its content from stretching it, you need to add an absolutely positioned child and stretch it to the edges of the wrapper with:

    div.stretchy-wrapper {
      position: relative;
    }
    
    div.stretchy-wrapper > div {
      position: absolute;
      top: 0; bottom: 0; left: 0; right: 0;
    }
    

    Here's a demo and another more in depth demo

    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(19条)

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!