1/*universial selector example to include padding, border, and margin
2in all box sizing totals*/
3* {
4 box-sizing: border-box;
5}
6/*example of div that will total 100% and not exceed it because it
7is using the border-box property*/
8div {
9box-sizing: border-box;
10width: 100%;
11border: solid #5B6DCD 10px;
12padding: 5px;
13margin: 10px;
14}