flexbox包装与不同大小的项目

问题描述 投票:1回答:2

我可以使用具有以下文档结构的flexbox实现此布局吗?

Layout

我想要左侧的大<img>,右侧有两个较小的图像并包裹。

这就是我所做的,display: flexgallery-container上的flex-wrap

.container {
  height: 100%;
}

.container .gallery-container {
  background-color: #f6f6f6;
  display: flex;
  flex-wrap: wrap;
  width: 300px;
  align-items: flex-start;
}

.container .gallery-container .gallery-big-image {
  display: block;
  width: 200px;
  height: 200px;
  background: lavender;
}

.container .gallery-container .gallery-small-img {
  display: block;
  width: 100px;
  height: 100px;
  background-color: purple;
}
<div class="container">
  <div class="gallery-container">
    <div class="gallery-big-image">big</div>
    <div class="gallery-small-img">small</div>
    <div class="gallery-small-img">small</div>
    <div class="gallery-small-img">small</div>
    <div class="gallery-small-img">small</div>
    <div class="gallery-small-img">small</div>
  </div>
</div>

(Qazxswpoi)

html css css3 flexbox
2个回答
1
投票

由于下面解释的原因:codepen,使用flexbox布局很笨拙且效率低下

但是,CSS Grid的布局相对简单易行。

没有对HTML的更改。

CSS-only masonry layout
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, 100px);
  grid-auto-rows: 100px;
  width: 300px;
  background-color: #f6f6f6;
}

.gallery-big-image {
  grid-column: span 2;
  grid-row: span 2;
  background: lavender;
}

.gallery-small-img {
  background-color: purple;
  color: white;
}

0
投票

如何使用<div class="container"> <div class="gallery-container"> <div class="gallery-big-image">big</div> <div class="gallery-small-img">small 1</div> <div class="gallery-small-img">small 2</div> <div class="gallery-small-img">small 3</div> <div class="gallery-small-img">small 4</div> <div class="gallery-small-img">small 5</div> <div class="gallery-small-img">small 6 (continues wrapping)</div> <div class="gallery-small-img">small 7 (continues wrapping)</div> </div> </div>代替?

grid layout
.container {
  height: 100%;
}

.gallery-container {
  background-color: #f6f6f6;
  width: 300px;
  height: 100px;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
}

.gallery-img {
  background: purple;
  width: 100px;
  height: 100px;
}

.gallery-img-large {
  background: lavender;
  width: 200px;
  height: 200px;
  grid-column-start: 0;
  grid-column-end: span 2;
  grid-row-start: 0;
  grid-row-end: span 2;
}
© www.soinside.com 2019 - 2024. All rights reserved.