I saw someone use inherit in their CSS sheet like so:
.foo{
backgroung: inherit;
}
I assume it just inherits the property from a source up the chain (like inline could inherit form linked). My question is what is the point of this, wont it inhert automatically, why use this?
.foo{
backgroung: inherit;
}
I assume it just inherits the property from a source up the chain (like inline could inherit form linked). My question is what is the point of this, wont it inhert automatically, why use this?