29

Here is my code:

.column {
    column-count: 4;
    column-gap: 10px;
    -moz-column-count: 4;
    -moz-column-gap: 10px;
    -webkit-column-count: 4;
    -webkit-column-gap: 10px;
}
<div class="column">
    <div class="inner">1</div>
    <div class="inner">2</div>
    <div class="inner">3</div>
    <div class="inner">4</div>
    <div class="inner">5</div>
    <div class="inner">6</div>
    <div class="inner">7</div>
    <div class="inner">8</div>
    <div class="inner">9</div>
    <div class="inner">10</div>
    <div class="inner">11</div>
    <div class="inner">12</div>
</div>

The result is:
1 4 7 10
2 5 8 11
3 6 9 12

What I want is:
1 2 3 4
5 6 7 8
9 10 11 12

Is that possible? How should I make it?

TylerH
  • 20,799
  • 66
  • 75
  • 101
Alan Yong
  • 993
  • 2
  • 12
  • 25

5 Answers5

18

Is even easier:

.inner:nth-child(4n+1) {
    clear: left;
}

.inner {
    float: left;
    margin: 5px;
}
<div class="column">
    <div class="inner">1</div>
    <div class="inner">2</div>
    <div class="inner">3</div>
    <div class="inner">4</div>
    <div class="inner">5</div>
    <div class="inner">6</div>
    <div class="inner">7</div>
    <div class="inner">8</div>
    <div class="inner">9</div>
    <div class="inner">10</div>
    <div class="inner">11</div>
    <div class="inner">12</div>
</div>

You can apply float: left and clear float: left every 4n+1 elements.

Ref:

:nth-child

Alex Char
  • 32,879
  • 9
  • 49
  • 70
  • 1
    I found this solution applied nicely also to a long `
      ` that I needed to display in two horizontal columns.
    – mrcoulson May 22 '16 at 18:23
  • 3
    This is okay but it doesn't allow for different height elements. – jscul Feb 11 '18 at 02:43
  • Love this solution. Any way of allowing different height? – Pluda Jan 15 '20 at 11:36
  • I couldn't make this work with `
      ` - does it need some extra work, and what do you need to apply to `
        ` and `
      • ` respectively?
    – Ela782 May 05 '20 at 21:29
  • Also I think this solution is not very friendly to responsive design. If say you choose 4 columns, but then you make the browser window less wide to only fit 3 or 2 columns, then items will be misaligned and you'll have gaps with no items. Which makes sense, since what then physically fits on the screen no longer matches the `(4n+1)`. – Ela782 May 05 '20 at 21:36
1

I actually put some effort forward this time. ignore everything from previous edit

the display property's inline-blocks is probably what you want to use.

Here is a thorough guide on how to use it

And here's a brief demo

li {
    width: 200px;
    display: inline-block;
}
Community
  • 1
  • 1
Stephan
  • 16,509
  • 7
  • 35
  • 61
1

Mansonry.js is the solution. Check this out http://masonry.desandro.com/ Also check out this demo. This is what you need i guess.. I am also trying to implement such thing :) http://tympanus.net/Development/GridLoadingEffects/index2.html

As far as I know there's no way to do this with CSS only which is sad

max bugaenko
  • 159
  • 1
  • 13
-1

check my simple codes below url. https://github.com/JJ81/column-count maybe you can have what you want.

jaejun
  • 7
  • 2
-1

Apply this:

.column { 
  width: 100px; 
  overflow:hidden;
} 
.column .inner {
  width:  20px; 
  float:left; 
  text-align:center;
}
Victor
  • 13,914
  • 19
  • 78
  • 147
Venk
  • 34
  • 4