The Box Model Explained

Lesson 5

All HTML elements can be considered as boxes. The term “box model” is used when talking about design and layout. The box model is essentially a box that wraps around HTML elements, and it consists of: margins, borders, padding, and the actual content.

The box model allows us to place a border around elements and space elements about other items. This image illustrates the box model:

The box model.

Explanation of the different parts:

  • Margin – Clears an area around the border. The margin does not have a background colour, it is completely transparent
  • Border – An edge that goes around the padding and content. The border is affected by the background colour of the box
  • Padding – Clears an area around the content. The padding is affected by the background colour of the box
  • Content – The content of the box, where text and images appear

To set the width and height of an element correctly in all browsers, you need to know how the box model works.

Source: W3Schools.com

Take me to the next lesson 'Using Basic Styles'

Scroll to Top
Scroll to Top