An open API service indexing awesome lists of open source software.

https://github.com/chaiyokung/css-masonry-layout

CSS Masonry Layout
https://github.com/chaiyokung/css-masonry-layout

css example learn masonry-layout

Last synced: 2 months ago
JSON representation

CSS Masonry Layout

Awesome Lists containing this project

README

        

# CSS Masonry Layout

index.html

```html


...
...
...
...

```

style.css

```css
.masonry {
display: flex;
flex-wrap: wrap;
}

.masonry-item {
height: 200px;
flex-grow: 1; /* use this for masonry layout */
}
```