box-sizing: border-box;
That will just make sure that any time we add padding or a border to an element, it does not increase the size, so that when we are trying to divvy up the width of a container, then we have it there.
—
box-sizing: border-box;
That will just make sure that any time we add padding or a border to an element, it does not increase the size, so that when we are trying to divvy up the width of a container, then we have it there.
—