Like if set:
div{background-color: transparent;}
So it is apply on all div element.
<div class="test"></div>
.test{background-color: inherit;color: red;}
So the inherit
is gets from transparent
not? So is added inherit by the browser? Like above? As if not set background-color
property but still transparent
is apply on div so inherited?
Thanks!