I come from this question: Understanding offsetWidth, clientWidth, scrollWidth and -Height, respectively
I understand that this is the case for the standard box model, is that right?
But what happens when you have something like this:
*{
box-sizing: border-box;
}
Are offsetWidth and clientWidth equal now? Does this happen always with this rule?
And what about padding-box
?