I\'ve created a two-column grid of images, which works fine with all-landscape images: Link. However, I\'ve added a portrait image that throws off the layout, so I\'d like t
You need to put some height to the container also, if not, it doesn't know how much it should show of what it is inside.
You can try something like this.
.portrait-crop{ display: inline-block; height: 215px; width: 50%; overflow: hidden; } .portrait-crop img{ width: 100%; }