In CSS, every element is a box. The CSS box model is a box that wraps around every HTML element. It consists of: content, padding, border, and margin.
Tip: Use box-sizing: border-box so padding and border are included in the total width.
Edit the code below and click Run to see the result live.