I want to make an image layout with portrait images inside a div with a fixed aspect ratio of 3:2. The size of images is 327
I would like to give simple solution.
You can simply wrap img tag with DIV. And you should apply CSS to this wrapped DIV.
Use below kind of structure
// suggestion: target IMG with parent class / ID
.img_wrapper img{
width: 100%;
height: auto;
}
All images inside class .img_wrapper would have proper aspect ratio.