喵-见缝插针 2009-09-29 23:11 采纳率: 0%
浏览 419
已采纳

用 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条)

报告相同问题?

悬赏问题

  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥15 stable diffusion
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘