-2

I want to make same spacing between all pictures. Their width would be the same only height differs. It should look like in the picture. example: http://prntscr.com/2ugt3z

2 Answers2

0

do you mean something like, this will place margin of 5px on every image tag inside #content:

#content img{
 margin: 5px;
}

or make:

.image-margin{
margin: 5px;
}

and do something like:

or: http://isotope.metafizzy.co/

RunnicFusion
  • 193
  • 1
  • 3
  • 12
0

That kind of layout cannot be done using only floats, your options are:

rampaign
  • 66
  • 2
  • 6