responsive img question & a max width
Hi,
If I have the standard responsive attribute applied to images with this class name... what happens when in certain cases I need to ensure the image has set dimensions, but can most certainly downscale. I just don't want it huge within the space its presented in. A little more control:
<img class="pics" src="/images/myPhoto.jpg" alt="description" style="width:277px;height:204px;"/>
.pics {
width: 100%;
height: auto;
}
Would I create another class, and add a max-width?
Thank you.
