margin in html css code example
Example 1: 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 2: css code for margin
body {
margin: 0px;
}