Which property should be used for setting the left margin of an element?
The margin-left CSS property sets the margin area on the left side of an element. Example :
div{ margin-left:10px }
save
listen
AI Answer
Which property should be used for setting the left margin of an element?
1
The margin-left CSS property sets the margin area on the left side of an element. Example…
asked
Apu
1 answers
2915
The margin-left CSS property sets the margin area on the left side of an element. Example…
Answer Link
answered
Apu
margin-top property is used to set top margin of an element.
margin-bottom
property is used to set bottom margin of an element.
margin property is used to set margin of an element. Syntax ---- margin : top right bottom left;
Example :
#div{
margin:5px 12px 45px 7px;
}