Answers for "margin is use for which thing"

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

Code answers related to "margin is use for which thing"

Browse Popular Code Answers by Language