CSS margin-bottom 属性 详解
css3基础 2022-07-14 16:29:59小码哥的IT人生shichen
CSS margin-bottom 属性
实例
设置 p 元素的下外边距:
p
{
margin-bottom:2cm;
}
完整实例【亲自试一试】:
<html>
<head>
<style type="text/css">
p.bottommargin {margin-bottom: 2cm}
</style>
</head>
<body>
<p>这个段落没有指定外边距。</p>
<p class="bottommargin">这个段落带有指定的下外边距。</p>
<p>这个段落没有指定外边距。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
(在页面底部可以找到更多实例)
CSS 语法
margin-bottom: length|auto|initial|inherit;
属性值
值 | 描述 |
---|---|
auto | 浏览器计算下外边距。 |
length | 规定以具体单位计的下外边距值,比如像素、厘米等。默认值是 0px。 |
% | 以包含元素宽度的百分比指定下外边距。 |
inherit | 规定应该从父元素继承下外边距。 |
技术细节
默认值: | 0 |
---|---|
继承性: | no |
版本: | CSS1 |
JavaScript 语法: | object.style.marginBottom="10px" |
更多实例
完整实例【设置文本的下外边距 1】:
<html>
<head>
<style type="text/css">
p.bottommargin {margin-bottom: 2cm}
</style>
</head>
<body>
<p>这个段落没有指定外边距。</p>
<p class="bottommargin">这个段落带有指定的下外边距。</p>
<p>这个段落没有指定外边距。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例演示如何使用厘米值来设置文本的下外边距。
完整实例【设置文本的下外边距 2】:
<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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例演示如何使用百分比值来设置文本的下外边距。
浏览器支持
表格中的数字注明了完全支持该属性的首个浏览器版本。
Chrome | IE / Edge | Firefox | Safari | Opera |
---|---|---|---|---|
1.0 | 6.0 | 1.0 | 1.0 | 3.5 |