Element floats on right side (even though float: left is set)

115 Views Asked by At

I'm lining up images besides each other with float: left which works fine until the next line. By some reason the image on the next line is positioned on the right side and the image after that on a new line to the left. It's hard to explain so it's better you see it yourself: http://spiritusmundi.se/om-oss/verksamhetsberattelse/

What could be the issue here?

1

There are 1 best solutions below

1
On BEST ANSWER

Did you try like this below :

.float-left { display: inline-block; 
    float left //remove this
    } 

Check and let me know