Box Model is a box that wraps around every HTML Element. Box consists of padding, margin, and the actual content. Our web browser creates a box for each element in the HTML Document.
It is a box for every HTML element that consists of margin and padding property.
Width
content-box: content
padding-box: content+padding
border-box: content+padding+border
<!DOCTYPE html>
<html>
<style>
div {
border: 10px solid red;
margin: 55px;
padding: 25px;}
</style>
<body>
<div>
TDB Tutorials
</div>
</body>
</html>