CSS
π What Is The Css Box Model?
On a web page, every HTML element (for example, <div>, <p>, <h1>, <img>) is actually like a box.This box has four main parts:
- 1. Content β The area where the text, image, or main element is displayed.
- 2. Padding β The space between the content and the border.
- 3. Border β The line surrounding the element (optional).
- 4. Margin β The space outside the box, separating it from other elements.
In short, every HTML element is made up of these four layers.
π¨ THE VISUAL LOGIC OF THE BOX MODEL
Imagine you have a gift box: π
- The gift inside the box β content
- The space between the gift and the box walls β padding
- The cardboard part of the box β border
- The air around the box β margin
π‘AN EXAMPLE:
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 200px;
height: 100px;
background-color: lightblue;
padding: 20px;
border: 5px solid darkblue;
margin: 15px;
}
</style>
</head>
<body>
<div>Box Model Example</div>
</body>
</html>
In this example, the actual (total) size of the box is calculated as follows π
- Content width = 200px
- Left and right padding = 20px + 20px = 40px
- Left and right border = 5px + 5px = 10px
- Left and right margin = 15px + 15px = 30px
π Total width = 200 + 40 + 10 + 30 = 280px
Now for the height:
- Height = 100px
- Top & bottom padding = 20 + 20 = 40px
- Top & bottom border = 5 + 5 = 10px
- Top & bottom margin = 15 + 15 = 30px
π Total height = 100 + 40 + 10 + 30 = 180px
βοΈ The box-sizing Property
By default, browsers calculate the elementβs width based only on the content area.
However, you can include the padding and border in the total width using this property:
div {
box-sizing: border-box;
}
With this setting, when you write width: 200px; the total width of the box will be exactly 200px the padding and border will automatically fit inside that width.
π§ In Summary:
- The CSS Box Model determines:
- how much space an element takes up,
- how itβs spaced apart from other elements, and
- the distance between its content and borders.
If you understand this model well, you can fully control the layout and structure of your web pages. πͺ
