I do not believe that this type of class inheritance is less supported. Instead, you may have to redefine the h1 style as a class and inherit it.
.h1 {
}
.h1_replace{
.h1;
}
Although, if you do, you can probably just use the .h1 class in all of your code.
source
share