Within my CSS file, I have a property (shown below) that is set to apply to all images:
img{height:auto;max-width:100%;}
However, I have a specific div where I do not want this property to apply to the images within it. Even after assigning a new image class, the global styling above still affects them.
Is there a method to prevent the universal image styling from affecting images inside this particular div?