This Snippet is to allow Box Model to fit in the specified with without having to worry the element will move to the bottom due to insufficient fixed width space.
It will push all margin and padding inwards instead of adding it to the elements.
/* START Border Box Fix */
html {
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
/* END Border Box Fix */