I have a CSS class with the width
property set to calc(100% - 17px)
. However, I want to ignore this property completely for devices with specific resolutions. I've tried using media queries and values like initial
, inherit
, and unset
for the width
property, but it only partially solves my issue.
In Chrome's styles tab, unchecking the property makes everything look great. What would be the CSS alternative to unchecking a property in the Chrome styles tab?