Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Responsive Two Column / Multi Row Grid Reply To: Responsive Two Column / Multi Row Grid

#247486
jurotek
Participant

You might consider mobile first:

.items .item {width: 100%;}

@media (min-width: 760px){
  .items .item{width: 50%;}
}