margin html code example
Example 1: css margin bottom
.yourClass {
margin-bottom: 25px;
}
Example 2: margin css
/* Apply to all four sides */
margin: 1em;
margin: -3px;
/* vertical | horizontal */
margin: 5% auto;
/* top | horizontal | bottom */
margin: 1em auto 2em;
/* top | right | bottom | left */
margin: 2px 1em 0 auto;
/* Global values */
margin: inherit;
margin: initial;
margin: unset;
Example 3: css margin
#blockOrInline-Block {margin: 0px/*top*/ 0px/*right*/ 0px/*bottom*/ 0px/*left*/;}
Example 4: how do I add a vertical margin in css
subject {
margin-top: /*the size of the margin */ (example: 100px)
/* or */
margin-bottom: /*the size of the margin */ (example: 100px)
}
Example 5: css code for margin
body {
margin: 0px;
}