The margin-left CSS property sets the margin area on the left side of an element. Example : div{ margin-left:10px }
The margin-left CSS property sets the margin area on the left side of an element. Example :
div{
margin-left:10px
}
Related Posts
Comments (1)
Anonymous
• January 05, 2023
margin-right property is used to set right margin of an element. margin-left property is used to set left margin of an element. 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; }
Comments (1)
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;
}