how to set margin in scss code example
Example 1: css margin bottom
.yourClass {
margin-bottom: 25px;
}
Example 2: how to add a left margin in css
<html>
<head>
</head>
<body>
<p style = "margin-left: 15px; border:1px solid black;">
This is a paragraph with a specified left margin
</p>
<p style = "margin-left: 5%; border:1px solid black;">
This is another paragraph with a specified top margin in percent
</p>
</body>
</html>