Answers for "margin propertys"

CSS
16

css margin

div.one {
  	margin: 20px; /* All around */
}
div.two {
	margin: 20px 10px; /* vertical | horizontal */
}
div.three {
	margin: 20px 10px 30px; /* top | horizontal | bottom */
}
div.four {
	margin: 20px 10px 30px 40px; /* top | right | bottom | left */
}
Posted by: Guest on December-10-2021
0

margin

margin: top right bottom left;
Posted by: Guest on July-17-2021

Browse Popular Code Answers by Language