HTML/CSS Website Layout
Box Model
The structure of Box Model
Difference between margin and padding
<style>
div {
......
margin-left: 100px;
padding-left: 100px;
}
div {
margin: 100px 0 0 100px; /* top right bottom left */
padding: 100px 0 0 100px;...
junho-shin.hashnode.dev3 min read