Computer Science, asked by rosebella, 4 months ago

How can we set the margins for an element on webpage? Name and explain 4 types of
margin properties?

Answers

Answered by BritneySwift
1

Answer:

The margin property sets the margins for an element, and is a shorthand property for the following properties:

margin-top

margin-right

margin-bottom

margin-left

If the margin property has four values:

margin: 10px 5px 15px 20px;

top margin is 10px

right margin is 5px

bottom margin is 15px

left margin is 20px

If the margin property has three values:

margin: 10px 5px 15px;

top margin is 10px

right and left margins are 5px

bottom margin is 15px

If the margin property has two values:

margin: 10px 5px;

top and bottom margins are 10px

right and left margins are 5px

If the margin property has one value:

margin: 10px;

all four margins are 10px

Note: Negative values are allowed.

HOPE IT'LL HELP..

Similar questions