左右结构div框自动伸缩示例

文章展示了如何在CSSFlexbox的flex-grow无法满足需求时,通过JavaScript来自动计算宽度,实现动态调整大小的布局。示例中,作者创建了一个左右结构的页面,右侧div包含多个子div,这些子div的宽度会根据屏幕大小和数量自动适应,确保布局的灵活性。
摘要由CSDN通过智能技术生成

由于flex-grow不能很好解决最后一个div框与其他框长度问题,自己实现了一个自动计算宽度来动态调整大小的布局

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />

    <title>左右结构div自动伸缩</title>
    <script src="./asserts/js/jquery-3.6.3.min.js"></script>

    <style></style>
    <script type="text/javascript"></script>
  </head>
  <body>
    <div style="height: 200px; width: 100%; position: relative; border: 1px solid rgb(107, 98, 98)">
      <div style="height: 200px; width: 300px; position: absolute; background-color: aqua"></div>
      <div style="height: 200px; width: calc(100vw - 320px); float: right; background-color: blue; display: flex; flex-direction: row; flex-wrap: wrap">
        <div style="height: 200px; width: 200px; background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; width: 200px; background-color: rgb(11, 182, 182)"></div>
      </div>
    </div>

    <div style="height: 500px; width: 100%; position: relative; border: 1px solid red">
      <div style="height: 500px; width: 300px; position: absolute; background-color: aqua"></div>
      <div style="height: 500px; width: calc(100vw - 320px); float: right; background-color: blue">
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
        <div style="height: 200px; float: left; margin: 15px; width: calc((100% - 120px - 15px * 5) / 5); background-color: rgb(11, 182, 182)"></div>
      </div>
    </div>
  </body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

bbkkkk

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值