-
In CSS, the term “box model” is used when talking about design and layout.
-
The CSS box model is essentially a box that wraps around every HTML element. It consists of: content, Padding CSS, Border CSS and Margins CSS.


- We can first set Padding CSS and Margins CSS to zero to all elements by Universal Selector
* {
margin: 0;
padding: 0;
}