I am searching for the following solution. In my CSS I have the following:
img, a img {
max-width: 100%;
vertical-align: middle;
}
<
I think it's because a img is more specific than #pixel-perfect img. Element selector is more specific than id selector (So in this example you have 2 elements vs 1element and 1 id).
In order to fix it, you'd have to add an element to your declaration, for example:
a#pixel-perfect img {
max-width: auto !important;
}