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

Зміст курсу

Introduction to CSS Part I

Introduction to CSS Part I

1. Basic Introduction
2. Selectors and Cascade
3. Box Model

Sizing Elements

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

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:

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

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

css

index

js

index

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).

Все було зрозуміло?

Секція 3. Розділ 2
We're sorry to hear that something went wrong. What happened?
some-alt