I want to create Image gallery like Mobile gallery . each Image should be in square box inside main container.
Image shouldn't be stretched instead crop or clip at maximum. now i stretch image with aspect ratio using this code,
img {
max-width : 150px;
max-height : 150px;
}
it gives me minimized thumbnail of each image. but i want to make all inside square box with center clipped or cropped image.
