'Remove specific rules from tailwind base

I want to remove the img rule from tailwind base, is there anyway to do that?

Tailwind base adds this:

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

I want to remove that rule. Overrideing it with initial will not get my expected result.

So unfortunately i cannot do:

img, video {
    max-width: initial;
    height: initial;
}

height: initial doesnt seems to be the same as having no height attribute at all. If i override height to initial the height will be the source of the image and height attributes on the <img height="200"> will not be respected.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source