Set all four margins of a <div> element:
document.getElementById("myDiv").style.margin = "50px 10px 20px 30px";
Try it Yourself »
The margin property sets or returns the margins of an element.
This property can take from one to four values:
Both the margin property and the padding property insert space around an element. However, the difference is that margin inserts the space around the border, while padding inserts the space within the border of an element.
Property | |||||
---|---|---|---|---|---|
margin | Yes | Yes | Yes | Yes | Yes |
Return the margin property:
object.style.margin
Set the margin property:
object.style.margin
= "%|
length|auto|initial|inherit"
Value | Description |
---|---|
% | Defines the margins in % of the width of the parent element |
length | Defines the margins in length units |
auto | The browser sets the margins (all four margins will be equal) |
initial | Sets this property to its default value. Read about initial |
inherit | Inherits this property from its parent element. Read about inherit |
Default Value: | 0 |
---|---|
Return Value: | A String, representing the margins of an element |
CSS Version | CSS1 |
Change all four margins of a <div> element to "25px":
document.getElementById("myDiv").style.margin = "25px";
Try it Yourself »
Return the margins of a <div> element:
alert(document.getElementById("myDiv").style.margin);
Try it Yourself »
Difference between the margin property and the padding property:
function changeMargin() {
document.getElementById("myDiv").style.margin = "100px";
}
function changePadding() {
document.getElementById("myDiv2").style.padding = "100px";
}
Try it Yourself »
CSS tutorial: CSS Margin
CSS reference: margin property
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!