There is a CSS selector that I want to target, but only on one specific page.
Normally I would write something like this:
.page-id-70 a{
text-decoration: underline;
}
But this selector is in a different form, it's inside brackets:
[class*="span"] {
margin-left: 82px;
}
Is there a way to target a selector like that on a single page ID?