Alternatively, you can try to change the box-sizing property, either for each element on the page, or for only one container. For instance. for each element on the page you should write:
* { box-sizing: border-box; }
This will change the default window model that the browser uses, so the width of the element does not change whether it is padded or not.
source
share