valdevweb
11/24/2017 - 10:38 PM

EASILY RESIZE IMAGES TO FIT

Sometimes you get in a pinch where images need to fit a certain width, while scaling proportionally. An easy way to do this is to use max width to handle this. Here is an example:



img {
    max-width:100%;
    height:auto;
}