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

book
Sizing Elements

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

css
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:

css
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:

css
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:

html

index.html

css

index.css

copy
<html>
<head>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div>Text inside a div</div>
</body>
</html>

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