目录

CSS margin-right 属性


示例

将 <p> 元素的右边距设置为 150 像素:

p.ex1 {
  margin-right: 150px;
}
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

这个margin-right属性设置元素的右边距。

笔记:允许负值。

展示演示❯

默认值: 0
遗传:
可动画: 是的,查看各个属性阅读可动画的尝试一下
版本: CSS1
JavaScript 语法: 对象.style.marginRight="100px"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

Property
margin-right 1.0 6.0 1.0 1.0 3.5


CSS 语法

margin-right: length|auto|initial|inherit;

属性值

Value Description Demo
length Specifies a fixed right margin in px, pt, cm, etc. Default value is 0px. Read about length units Demo ❯
% Specifies a right margin in percent of the width of the containing element Demo ❯
auto The browser calculates a right margin Demo ❯
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

更多示例

示例

将 <p> 元素的右边距设置为容器宽度的 50%:

p.ex1 {
  margin-right: 50%;
}
亲自试一试 »

示例

将 <p> 元素的右边距设置为 15 em:

p.ex1 {
  margin-right: 15em;
}
亲自试一试 »

相关页面

CSS教程:CSS 边距

HTML DOM 参考:marginRight 属性