Is there a way to scale all images on my site while excluding SVG files using native CSS?
.myClass img {
height: auto;
}
I have tried the following, but it only targets SVG files:
.myClass img[src$=".svg"] {height: auto;}
Using != doesn't seem to work syntactically. Any suggestions?