web analytics

Understanding the Box Model in CSS

Options

codeling 1595 - 6639
@2016-01-09 17:23:33

All HTML elements can be considered as boxes. In CSS, the term "box model" is used when talking about design and layout.

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

The box model illustrates how the CSS properties: margin, border, and padding, affects the width and height of an element.

The Box Model

The image below illustrates the box model:


 

Explanation of the different parts:

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

Width and Height of an Element

Important: When you specify the width and height properties of an element with CSS, you are just setting the width and height of the content area. To know the full size of the element, you must also add the padding, border and margin.

The total width of the element in the example below is 300px:

width:250px;
padding:10px;
border:5px solid gray;
margin:10px; 

Let's do the math:

250px (width)
+ 20px (left and right padding)
+ 10px (left and right border)
+ 20px (left and right margin)
= 300px

Imagine that you only had 250px of space. Let's make an element with a total width of 250px:

width:220px;
padding:10px;
border:5px solid gray;
margin:0px; 

The total width of an element should always be calculated like this:

Total element width = width + left padding + right padding + left border + right border + left margin + right margin

The total height of an element should always be calculated like this:

Total element height = height + top padding + bottom padding + top border + bottom border + top margin + bottom margin

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com