Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Sizing Elements | Box Model
Introduction to CSS Part I

bookSizing Elements

To specify the box model properties for an element in CSS, you can use the following syntax:

element {
  width: <value>;
  height: <value>;
  margin: <value> <value> <value> <value>; /* top right bottom left */
  border: <width> <style> <color>;
  padding: <value> <value> <value> <value>; /* top right bottom left */
}

Note that the margin and padding properties accept four values corresponding to the element's top, right, bottom, and left sides. If you want to specify the same value for all sides, you can use the following shorthand syntax:

element {
  margin: <value>; /* all sides */
  padding: <value>; /* all sides */
}

Here's an example of how you might use the box model properties to style a <div> element:

div {
  width: 500px;
  height: 50px;
  margin: 20px;
  border: 2px solid black;
  padding: 10px;
}

This will create a div element that is 500 pixels wide and 50 pixels tall, has a 20-pixel margin on all sides, a 2-pixel black border, and a 10-pixel padding on all sides:

index.html

index.html

index.css

index.css

copy

It's important to note that the width and height of an element are calculated based on the element's content, padding, border, and margin.

For example, if you set the width of an element to 200 pixels and the padding to 20 pixels on all sides, the total width of the element will be 240 pixels (200 pixels + 20 pixels + 20 pixels).

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 2

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

Awesome!

Completion rate improved to 5.26

bookSizing Elements

Swipe to show menu

To specify the box model properties for an element in CSS, you can use the following syntax:

element {
  width: <value>;
  height: <value>;
  margin: <value> <value> <value> <value>; /* top right bottom left */
  border: <width> <style> <color>;
  padding: <value> <value> <value> <value>; /* top right bottom left */
}

Note that the margin and padding properties accept four values corresponding to the element's top, right, bottom, and left sides. If you want to specify the same value for all sides, you can use the following shorthand syntax:

element {
  margin: <value>; /* all sides */
  padding: <value>; /* all sides */
}

Here's an example of how you might use the box model properties to style a <div> element:

div {
  width: 500px;
  height: 50px;
  margin: 20px;
  border: 2px solid black;
  padding: 10px;
}

This will create a div element that is 500 pixels wide and 50 pixels tall, has a 20-pixel margin on all sides, a 2-pixel black border, and a 10-pixel padding on all sides:

index.html

index.html

index.css

index.css

copy

It's important to note that the width and height of an element are calculated based on the element's content, padding, border, and margin.

For example, if you set the width of an element to 200 pixels and the padding to 20 pixels on all sides, the total width of the element will be 240 pixels (200 pixels + 20 pixels + 20 pixels).

Everything was clear?

How can we improve it?

Thanks for your feedback!

SectionΒ 3. ChapterΒ 2
some-alt