Arty
Well-known member
When adding !important at the end of some style properties, it disappears from CSS.
Example: saving this property via WebDav:
In CSS output it changes to
!important magically disappears.
Example: saving this property via WebDav:
Code:
.categoryStrip .categoryToggle
{
@property "categoryToggle";
text-decoration: none !important;
@property "/categoryToggle";
}
Code:
.categoryStrip .categoryToggle
{
text-decoration: none;
}