CSS Margin
The margin clears an area around an element (outside the border). The margin does not have a background color, and is completely transparent.
Possible Values
auto
The browser sets the margin
px
Defines a fixed margin in pixels
%
Defines a margin in percentages
The top, right, bottom, and left margin can be changed independently using separate properties.
1
#container { margin-top: 100px; margin-right: [...]
↧