CSS Basics: The Box Model Essentials – A Beginner's Guide to Web Design Layout and Spacing

Deutsch

Basics of the CSS Box Model

In CSS we use the so-called Box Model. The box model is a fundamental principle that is necessary for understanding CSS. Generally, every element in CSS is treated as a rectangular box which consists of

  • Content Area,
  • inner spacing (Padding),
  • Border and
  • outer spacing (Margin).

The following figure shows a schematic representation of the box model.

schematic representation of the box model
Schematic of the Box Model

Each HTML element is considered a rectangular area in the box model. The CSS Properties Padding, Border and Margin are the cornerstones for the layout of a web page.

Each box has the following features:

  • content width and content height

    Text or other data is located in the content area. The two width and height of the element always refer to the content area, not the total amount of space occupied by the element.

    The total width of the element is equal to:

    • left outer spacing (margin-left)
      + left border width (border-left)
      + left inner spacing (padding-left)
      + content area width
      + right inner spacing (padding-right)
      + right border width (border-right)
      + right outer spacing (margin-right)
      = Total width of the box

    The total height of the element is equal to

    • top outer spacing (margin-top)
      + top border width (border-top)
      + top inner spacing (padding-top)
      + content area height
      + bottom inner spacing (padding-bottom)
      + bottom border width (border-bottom)
      + bottom outer spacing (margin-bottom)
      = Total height of the box

  • Padding (inner spacing)
    In simple terms, padding defines the inner spacing between the content area and the border of an element. The padding area always has the same background color as the content area. To define the inner spacing, you can specify 1, 2, 3 or 4 values for padding. The Padding property is the shorthand for the following four properties, which can be used to define the inner spacing for the corresponding side:

    • padding-top (top inner spacing)
    • padding-right (right inner spacing)
    • padding-bottom (bottom inner spacing)
    • padding-left (left inner spacing)
  • Border
    The border shorthand property is used to draw a line around an element, such as a div or an image. It sets the border width, border style and border color values for all four sides. The following CSS properties are used to set the border for each side with its own values:

    • border-top (top line)
    • border-right (right line)
    • border-bottom (bottom line)
    • border-left (left line)
  • Margin (outer spacing)
    The Margin property specifies extra spacing around an element. Or, in simple terms, this means that margin is used to define the outer spacing from an element to adjacent elements. Margin is the shorthand property for the following four properties, which can be used to specify the outside spacing for each side of an element separately.

    • margin-top (top outer spacing)
    • margin-right (right outer spacing)
    • margin-bottom (bottom outer spacing)
    • margin-left (left outer spacing)

The type of positioning (position property) determines what the spacing from the sides will refer to.

Content Box

Text, images, and other media reside in the content area of an HTML element. A particular HTML element is defined by this area, also known as Content Box. Its size can be customized using the width and height properties. If the width value is not given, then

  • a Block element is as wide as its parent element.

  • an Inline element is only as wide as the content it contains.

If the height value is not specified, then each element will only be as high as it needs to be for the content it contains.

Typical properties for the content box are:

Padding Box

Padding refers to the internal spacing between the content of an HTML element and its border. The Padding Box belongs to the content box. Therefore, the padding values are added to the width and height of the content area. The padding box always has the same background color as the content area. Padding can be the same for all four sides or set individually for each side. You can specify 1 to 4 values for the padding property.

Negative values for padding are not allowed.

Border Box

HTML elements always have a border. Even a border that is not visible (border-width: 0) is part of the element. The Border Box encloses the content box. This means, it encloses both the padding box and the border of the element.

The border box doesn't have a background.

Just like padding, a border cannot have a negative width (thickness).

Margin Box

The outer spacing (margin) is a forced empty space (also known as whitespace) between an element and the parent element as well as adjacent elements. The Margin Box is the area between the border of an element and adjacent elements. In other words, margin is an invisible space around the border that causes a spacing to other elements.

Negative margin values are allowed. However, a negative value for margin can result in overlapping elements.

Unlike padding, margin has no effect on the width or height of the element. The total space required for the element is the content box plus border and margin.

Margin can be the same for all four sides, or it can be set individually for each side. The margin property accepts one, two, three or four values.

Note:
  1. A margin can also be defined for the parent element as well as for the elements adjacent to it.

  2. The margin area is always transparent and cannot be styled to fit your needs. This means that margin areas always have the same background as the parent element.

Example CSS

/* define regions */

div.box1 { /* outer spacing: all sides */ margin: 0.5em; /* inner spacing: all sides */ padding: 0.3em; /* width: 30% of entire window */ width: 30%; /* background: antiqueWhite */ background: #faebd7; /* border: black double solid line */ border: 0.125em double #000000; /* container »enclose«: right beside box1 */ float: left; } div.box2 { /* inner spacing: all sides */ padding: 0.5em; /* width: 100% of »enclose« */ width: 100%; /* background: lightRed */ background: #ff7276; /* border: white dotted line */ border: 0.125em dotted #ffffff; } div.enclose { /* outer spacing: vertical, horizontal */ margin: 0.5em 0.5em; /* width: 60% of entire window */ width: 60%; /* background: marineBlue */ background: #bbe8bb; /* border: grey double solid line */ border: 0.5em double #888888; /* container »enclose«: right beside box1 */ float: left; } /* paragraph inside box1 */ div.box1 p { /* inner spacing: all sides */ padding: 0.5em; /* background paragraph: lightYellowGreen */ background: #dfdfbc; /* text color darkGrey */ color: #404040; /* border: red single solid line */ border: 0.125em solid #dd0000; } /* paragraph inside box2 */ div.box2 p { /* inner spacing: all sides */ padding: 0.5em; /* background paragraph: lightGreen */ background: #bbe8bb; /* text color: black */ color: #000000; }
Example HTML
<div class="box1">
<p>In contrast to previous websites, for example, we no longer have to program two different websites for Internet Explorer and another browser. One page that is suitable for all browsers is sufficient.
</p>
</div>

<div class="enclose">
<div class="box2">
<p>Just when he had shot the thing of his life and was about to disappear with the loot, one of his countless accomplices had the same idea.</p>

<p>Who would follow him late at night? He tried to feel his way in the darkness and froze when he saw a dark figure in the dense fog. Was it really all over now?</p>
</div>
</div>
Output of the HTML code

In contrast to previous websites, for example, we no longer have to program two different websites for Internet Explorer and another browser. One page that is suitable for all browsers is sufficient.

Just when he had shot the thing of his life and was about to disappear with the loot, one of his countless accomplices had the same idea.

Who would follow him late at night? He tried to feel his way in the darkness and froze when he saw a dark figure in the dense fog. Was it really all over now?

This background       represents the screen and is not part of the sample code.