What do the crossed style properties in Google Chrome devtools mean?
While inspecting an element using Chrome's devtools, in the elements tab, the right-hand side 'Styles' bar shows the corresponding CSS properties. At times, some of these properties are strike-throughed. What do these properties mean?
Answer - https://stackoverflow.com/a/3047117/2232902
It means that the crossed-out style was applied, but then overridden by a more specific selector, a more local rule, or by a later property within the same rule.
Is there a way to prevent this behavior?
ie- Stop the overriding of the property.
Note - I don't have control over the selectors.