What does the CSS box-sizing: border-box declaration do?
- A Makes width include padding and border
- B Makes width exclude padding and border
- C Removes all borders
- D Adds a border to every element
Answer
Makes width include padding and border
With border-box, an element declared 300px wide occupies exactly 300px. The default content-box adds padding and border on top.





