Currently, images are hosted on my website in a div container with a given width and height.
Some shots are landscape, others are portrait.
I am currently giving images a static width and height using CSS to fit it correctly inside the container.
.winner .winner-image img { height: 159px; width: 143px; }
However, most often this distorts the image.
What is the recommended way to display images without distorting them? Best practics?
source share