Is it possible to disabling inheritance within an element?

If you don’t want something to inherit you have to manually set the style to the default

Aka


<div><div>text</div></div>


div{position:relative;}
div div{position:static;/*inner div doesnt get relative*/}