From http://www.w3schools.com (Copyright Refsnes Data)
The margin property is a shorthand property for setting all of the properties for the four margins in one declaration.
Note: Negative values are allowed.
Inherited: No
CSS properties can also be dynamically changed with a JavaScript.
Scripting Syntax: object.style.margin="100px"
In our HTML DOM tutorial you can find more details about the margin property.
In our HTML DOM tutorial you can also find a full Style Object Reference.
h1
{margin: 10px} h1
{margin: 10px 2%} h1
{margin: 10px 2% -10px} h1
{margin: 10px 2% -10px auto} |
Value | Description |
---|---|
margin-top margin-right margin-bottom margin-left |
Sets the properties for the margins. The values comes in %
(defines a margin in % of the total height/width of the
document), length (defines a fixed margin), and auto (the browser sets a margin). Default value: Not defined |
All the margin properties in one declaration
This example demonstrates how to set a shorthand property for setting all of the margin properties
in one declaration.
From http://www.w3schools.com (Copyright Refsnes Data)