企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# CSS margin-bottom 属性 ## 实例 设置 p 元素的下外边距: ``` p { margin-bottom:2cm; } ``` (在页面底部可以找到更多实例) ## 浏览器支持 | IE | Firefox | Chrome | Safari | Opera | | --- | --- | --- | --- | --- | 所有主流浏览器都支持 margin-bottom 属性。 注释:任何的版本的 Internet Explorer (包括 IE8)都不支持属性值 "inherit"。 ## 定义和用法 margin-bottom 属性设置元素的下外边距。 注释:允许使用负值。 | 默认值: | 0 | | --- | --- | | 继承性: | no | | --- | --- | | 版本: | CSS1 | | --- | --- | | JavaScript 语法: | _object_.style.marginBottom="10px" | | --- | --- | ## 可能的值 | 值 | 描述 | | --- | --- | | auto | 浏览器计算下外边距。 | | _length_ | 规定以具体单位计的下外边距值,比如像素、厘米等。默认值是 0px。 | | _%_ | 规定基于父元素的宽度的百分比的下外边距。 | | inherit | 规定应该从父元素继承下外边距。 | ## TIY 实例 [设置文本的下外边距 1](/tiy/t.asp?f=csse_margin-bottom) 本例演示如何使用厘米值来设置文本的下外边距。 ``` <html> <head> <style type="text/css"> p.bottommargin {margin-bottom: 2cm} </style> </head> <body> <p>这个段落没有指定外边距。</p> <p class="bottommargin">这个段落带有指定的下外边距。</p> <p>这个段落没有指定外边距。</p> </body> </html> ``` [设置文本的下外边距 2](/tiy/t.asp?f=csse_margin-bottom_percent) 本例演示如何使用百分比值来设置文本的下外边距。 ``` <html> <head> <style type="text/css"> p.bottommargin { margin-bottom: 25% } </style> </head> <body> <p>This is a paragraph with no margin specified</p> <p class="bottommargin">This is a paragraph with a specified bottom margin</p> <p>This is a paragraph with no margin specified</p> </body> </html> ``` ## 相关页面 CSS 教程:[CSS 外边距](/css/css_margin.asp "CSS 外边距") HTML DOM 参考手册:[marginBottom 属性](/jsref/prop_style_marginbottom.asp "HTML DOM marginBottom 属性")