Html – "revert" does not respect inheritance
According to the MDN docs for revert, it respects inheritance. So, in theory, if I have this HTML: <div class="container"> <h1 class="header">there</h1> </div> and this CSS: .container { font-weight: normal; } .header { font-weight: revert; } the weight of the…