Im trying to display images but I've got a couple of problems.
My images are different sizes and I was hoping to see whats the best way to avoid resolution issues and spacial problems with the layout.
You see I've got bigger/smaller images and I need them at 400 by 360px... Some get stretched and some get weird.(Try downsizing a big image into one small one)
What is the best way to handle images if you get them in different sizes but have a fixed space on the layout of your site?
I tried what the possible solution might be and it still streches...
#divDisplayingImg img{
width:500px;
height:360px;
border:solid medium white;
border-radius:5px;
border-width:8px;
background-size: cover;
overflow:hidden;
}