衫裤跑路 2009-09-29 23:11 采纳率: 50%
浏览 456
已采纳

用 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条回答 默认 最新

  • YaoRaoLov 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 不是,这到底错哪儿了😭
  • ¥15 2020长安杯与连接网探
  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私