Here’s All You Need to Know About the CSS Box Model

Written by smpnjn | Published 2022/07/16
Tech Story Tags: css | html | web-development | tutorial | web-design | software-development | website-development | css3

TLDRThe 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. 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. In HTML, every element creates a box, such as span and p, which is in line with text. Block elements have a fixed width and height, while inline elements are within lines of text, meaning content floating beside them.via the TL;DR App

The CSS box model is a term thrown around in CSS with very little context but is probably the most fundamental thing 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 sometimes 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.

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

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, and 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;
}

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;
}

Try it Out

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

https://codepen.io/smpnjn/pen/jOYZqWL

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;
}

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. The 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 the 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 the 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.

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;
}

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 behavior.

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 behavior, 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;
}

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;
}

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.

Border Radius

Finally, border-radius lets us add rounded edges to our divs. Note, that 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;
}

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.


Also published here.


Written by smpnjn | Product, Engineering, Web
Published by HackerNoon on 2022/07/16