related:https://css-tricks.com/almanac/properties/b/box-sizing/ why does the "<b>" element stop working when the font size is more then 20px code example
Example 1: border-box css
#example1 {
box-sizing: border-box;
}
Example 2: * box-sizing border-box
*{
box-sizing: border-box;
}