代码之家  ›  专栏  ›  技术社区  ›  angry kiwi

如何为flex overflown中的项设置宽度

css
  •  0
  • angry kiwi  · 技术社区  · 5 年前

    .divA {
      background: red;
      width: 500px;
      display: flex;
      flex-direction: row;
      overflow-y: scroll;
    }
    
    .epi {
      width: 50%;
      background: blue;
    }
    <div class="divA">
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
    </div>

    我在等这个

    enter image description here

    但我明白了

    enter image description here

    我想把东西放进去。女主角的宽度是女主角的50%

    2 回复  |  直到 5 年前
        1
  •  1
  •   djolf    5 年前

    编辑:既然你不想把它包起来,而是水平滚动,你可以把它放在 overflow-x: scroll;

    .divA {
      background: red;
      width: 500px;
      display: flex;
      justify-content: flex-start;
      overflow-x: scroll;
      overflow-y: auto;
    }
    
    .epi {
      min-width: 50%;
      background: blue;
    }
    <div class="divA">
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
      <div class="epi">
        <h1>dsds</h1>
        <p>sdsds</p>
        <img src="img/heart.png" alt="" />
      </div>
    </div>