View all rules
S12
Use
S12
Use !important
for utility classes to make them immutable
For the logic concerning this, I would like to refer to Harry Robert’s “forcing immutability in CSS” logic as explained in this article.
.u-d-block {
display: block;
}
.u-d-block {
display: block !important;
}