Skip to main content

Command Palette

Search for a command to run...

CSS Box Model

Published
1 min read
CSS Box Model
S

A passionate Full Stack Software Developer 🚀 having an experience of building Web applications with JavaScript and some other cool libraries and frameworks.

In CSS, the term "box model" is used when talking about design and layout.

All HTML elements can be considered as boxes.

The CSS box model is essentially a box that wraps around every HTML element. It consists of: margins, borders, padding, and the actual content. The image below illustrates the box model:

  • Padding - Clears an area around the content. The padding is transparent

  • Border - A border that goes around the padding and content

  • Content - The content of the box, where text and images appear

  • Margin - Clears an area outside the border. The margin is transparent

EXAMPLE ->

div {
width: 300px;
border: 15px solid green;
padding: 50px;
margin: 20px;
}

More from this blog

Shubham's blog

66 posts

CSS Box Model