I am in the document Inspector window, and have selected the element and checked the "Computed" tab on the side. But that only shows me what values were available for the property and which one was chosen, not why that was chosen.
Basically, I am trying to set a property (width
) using a Stylish script, but the site's own setting keeps overriding mine, even though I believe mine has higher specificity - the chosen selector is .class1
, whereas my selector is tr td.class1.class2.class3[style]
(which I have confirmed is applicable to the element, since it does appear, though crossed out, in the "Computed" pane). Both the site's CSS sheet and my Stylish script use the !important
suffix on this property. So, I would like to know why exactly the site's property setting is being chosen over mine.