css change box model code example
Example 1: border-box css
#example1 {
box-sizing: border-box;
}
Example 2: reset the entire box model
* {
box-sizing: border-box;
}
#example1 {
box-sizing: border-box;
}
* {
box-sizing: border-box;
}