I want to add a padding-right(margin-right) on each thumbnail but the problem is that the last thumbnails are disappearing.
So, my question is how to add a decent padding (margin) on those thumbnails without disappearing.
This is the link.
I want to add a padding-right(margin-right) on each thumbnail but the problem is that
Share
A few ways:
margin-right:lastpropertyThe above is perfect if you’re supporting modern browsers.
If you have to support older browsers then you will manually have to add a class to the last thumbnail in a row. eg.
.last-thumband use that in your CSS to zero the margin.