Is it possible to set the specificity of a CSS selector, as opposed to it only being determined by counts of the selector(s) comprising it? i.e., if I have two selectors like so (showing the calculated specificity):
UL OL LI /* a=0 b=0 c=3 -> specificity = 3 */
UL OL LI.red /* a=0 b=1 c=3 -> specificity = 13 */
(examples from https://www.w3.org/TR/selectors/#specificity)
Is there any way to change the first example to this, in order to equalize the specificity of the two selectors and without adding an arbitrary class selector to do so:
UL OL LI /* a=0 b=1 c=3 -> specificity = 13 */
-or-
UL OL LI.red /* a=0 b=0 c=3 -> specificity = 3 */