DEV Community

Cover image for How the CSS Box Model Works
Johnny Simpson
Johnny Simpson

Posted on • Originally published at fjolt.com

How the CSS Box Model Works

The CSS box model is a term thrown around in CSS with very little context, but is probably the most fundamental things you can know in CSS. Simply put, the box model determines, the size, margin, and padding of any object on the page. It also refers to the weird way CSS handles 'inline' and 'block' content.

The Box Model

In HTML, every element creates a box. Some of these elements, such as span and p are inline, meaning they are in line with text, rather than structural elements of the page.

Other elements, like div are large 'block' elements. Each element carries a different type, so getting familiar with these is useful when learning both HTML and CSS.

Block elements have a fixed width and height which sometime span the entire page, while inline elements are within lines of text, meaning they have content floating beside them. Another type of element which is often used, is an inline block, which is simply a block of fixed width and height, within an inline context, such as within a block of text.

Regardless of whether an element is inline or a block, all elements have a number of core 'box' attributes. Those are shown in the image below.

Overview of how the CSS box model works

div {
    width: 100px;
    height: 100px;
    padding: 10px;
    border: 2px solid black;
    margin: 5px;
}
Enter fullscreen mode Exit fullscreen mode

For padding and margin, we can also refer to each side separately on the same line. In CSS, when we are referring to each side, the order is top, right, bottom, left. Take a look at the example below:

div {
    /*  top side padding: 10px
        right side padding: 20px
        bottom side padding: 5px
        left side padding: 10px
    */
    padding: 10px 20px 5px 10px;
}
Enter fullscreen mode Exit fullscreen mode

We can also directly call out these by using the properties padding-top, padding-right, padding-bottom and padding-left. The exact same properties exist for margin, i.e:

div {
    margin-left: 20px;
}
Enter fullscreen mode Exit fullscreen mode

Try it Out

Below is a demo div element which with some sliders. Use the sliders to adjust the box model properties, and see how it affects the div:

Quick Case Study

Let's think a little bit more about how box models work. We create a new div, and give it a width of 40px, a padding of 20px, and a border of 2px, as shown below. We also add 4px of margin.

div {
    width: 40px;
    padding: 20px;
    border: 2px solid black;
    margin: 4px;
}
Enter fullscreen mode Exit fullscreen mode

How big is the box?

Since the width is 40px, the padding is 20px, and the border is 2px, the total width rendered on the page is actually 84px!

To explain a bit more, the width as shown in the diagram, is the width excluding the padding. Since we said the padding is 20px, CSS adds 20px to all sides of the box. That means 20px on the left, and 20px on the right, which is 40px in total. When we add that to our width, we get 80px.

Finally, we have 2px of border the whole way around the div, which is 2px on the left hand side, and 2px on the right hand side. The result is 40px + 40px + 4px, or 84px.

Display

The CSS box model also has another property called display, which among other things, can allow you to hide an item. Display also lets us set a specific HTML to block or inline. For the purposes of the box model, let's think about a few key properties:

  1. none - the item is hidden.
  2. inline - the item is inline, i.e. inline with text, it cannot have a width or height added to it.
  3. block - the item is a block, i.e. it takes up the entire width and starts on a new line.
  4. inline-block - the item is inline with text, but it can have a width and height added to it in CSS.
  5. contents - the item is displayed as if its container does not exist, and is added to the container above. An example of the CSS box model display property

Let's take a look at a quick example. The code is shown below, for an example where a span is forced to be a block element. span elements are typically inline, so this example will give this span the box properties of an element like a div.

span {
    display: inline;
    width: 100px;
    height: 30px;
    padding: 10px;
}
Enter fullscreen mode Exit fullscreen mode

Box Sizing

The way CSS manages padding, width, and border separately has always been a point of contention in the CSS community. As such, a property has been created to remedy this, known as box-sizing. Box sizing lets us override this default behaviour.

Let's think about our 40px width box which ended up being 84px wide. We can set box-sizing to:

border-box: the width includes border and padding. Our total width will now be 40px, even with the padding and border.
content-box: the default behaviour, the width excludes border and padding. Our total width will now be 84px.
Now we have way more control and can set our widths with certainty that they will display as we expect them to on the page.

Borders

Borders are another way we can affect the box model. Borders can be defined as surrounding the entire element, or on a specific side, using border-top, border-right, border-bottom or border-left. Here is an example:

div {
    border: 1px solid red;
    border-top: 2px solid black;
}
Enter fullscreen mode Exit fullscreen mode

A border property can be split out into separate lines too. 1px solid red can be written as:

div {
    border-width: 1px;
    border-color: red;
    border-style: solid;
}
Enter fullscreen mode Exit fullscreen mode

Similarly, we can apply these to a single side, i.e. border-top-width, border-top-color or border-top-style for the top side. We can do this for any side.

The color accepts any color, and you can learn more about colors in the color section. the border-style property accepts the following values: none, hidden, dotted, dashed, solid, double, groove, ridge, inset, outset.

CSS Box Model Borders Example

Border Radius

Finally, border radius lets us added rounded edges to our divs. Note, this does not affect the box model, so the size of the element remains the same, but it does affect its aesthetics. It accepts any unit - but I am using pixels as an example below. The larger the unit the bigger the rounding. Here is an example in code of how it looks:

div {
    border-radius: 20px;
}
Enter fullscreen mode Exit fullscreen mode

How border radius works in the box model

Conclusion

That's everything you need to know to understand the box model. If you're interested in testing your knowledge, I've also made a quiz which you can check out here. Thanks for reading.

Top comments (2)

Collapse
 
alohci profile image
Nicholas Stimpson • Edited

The answer you've got to question 7 on your quiz is wrong. When using box-sizing: border-box, if the sum of the border and padding block-dimension widths is greater than the specified height, the content height doesn't go negative, it gets clamped at 0. So the final border-box height is border-top + padding-top + 0 + padding-bottom + border-bottom, which is 10px more than the answer you give.

Collapse
 
smpnjn profile image
Johnny Simpson

Thanks, I'll update the quiz.