当前位置:   article > 正文

[CSS]使用flex实现二联三联布局

[CSS]使用flex实现二联三联布局

1. 使用flex实现二联布局

思路:左侧为固定width,右侧为所有

  1. <style type="text/css">
  2.  .wrap {
  3.    display: flex;
  4.    justify-content: space-between;
  5. }
  6.  .left,
  7.  .right,{
  8.    height: 100px;
  9. }
  10.  .left {
  11.    width: 200px;
  12.    background: coral;
  13. }
  14.  .right {
  15.    flex:1;
  16.    background: lightblue;
  17. }
  18. }
  19. </style>
  20. <div class="wrap">
  21.  <div class="left">左侧</div>
  22.  <div class="right">右侧</div>
  23. </div>

2. 使用flex实现三联布局

  1. <style type="text/css">
  2.  .wrap {
  3.    display: flex;
  4.    justify-content: space-between;
  5. }
  6.  .left,
  7.  .right,
  8.  .middle {
  9.    height: 100px;
  10. }
  11.  .left {
  12.    width: 200px;
  13.    background: coral;
  14. }
  15.  .right {
  16.    width: 120px;
  17.    background: lightblue;
  18. }
  19.  .middle {
  20.    background: #555;
  21.    width: 100%;
  22.    margin: 0 20px;
  23. }
  24. </style>
  25. <div class="wrap">
  26.  <div class="left">左侧</div>
  27.  <div class="middle">中间</div>
  28.  <div class="right">右侧</div>
  29. </div>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/353520
推荐阅读
相关标签
  

闽ICP备14008679号