Computer Science, asked by deveshchandrakar65, 6 months ago

1
In the following code snippet, what value is
given for the left margin:
margin: 5px 10px 3px 8px;
(a) 3px
(b) 10px
(C) 8px
(d) 5px​

Answers

Answered by kristikb
21

Answer:

10px is the answer....l think so

Answered by letmeanswer12
3

"Option C: 8px".

Explanation :

The value of the left margin is 8px.

In CSS margin property, there is a certain rule for properties. Margin will be in the following format: margin_top, margin-bottom, margin-right, margin-left.

If margin property has four values, then the order is top, bottom, right, left.

If the margin property has three values, then the 1st value is top, 2nd is right and left, 3rd value is bottom.

If the margin property has two values, then the 1st value is top & bottom, 2nd is right & left.

If the margin property has one value, then all margins have that single value.

Similar questions