CSS margin-top 属性 详解
css3基础 2022-07-14 16:30:07小码哥的IT人生shichen
CSS margin-top 属性
实例
设置 p 元素的上外边距:
p
{
margin-top:2cm;
}
完整实例【亲自试一试】:
<html>
<head>
<style type="text/css">
p.topmargin {margin-top: 5cm}
</style>
</head>
<body>
<p>这个段落没有指定外边距。</p>
<p class="topmargin">这个段落带有指定的上外边距。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
(在页面底部可以找到更多实例)
CSS 语法
margin-top: length|auto|initial|inherit;
属性值
值 | 描述 |
---|---|
auto | 浏览器设置的上外边距。 |
length | 定义固定的上外边距。默认值是 0。 |
% | 以包含元素宽度的百分比指定上外边距。 |
inherit | 规定应该从父元素继承上外边距。 |
技术细节
默认值: | 0 |
---|---|
继承性: | no |
版本: | CSS1 |
JavaScript 语法: | object.style.marginTop="10px" |
更多实例
完整实例【设置文本的上外边距 1】:
<html>
<head>
<style type="text/css">
p.topmargin {margin-top: 5cm}
</style>
</head>
<body>
<p>这个段落没有指定外边距。</p>
<p class="topmargin">这个段落带有指定的上外边距。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
本例演示如何使用厘米值来设置文本的顶边距。
完整实例【设置文本的上外边距 2】:
<html>
<head>
<style type="text/css">
p.topmargin
{
margin-top: 25%
}
</style>
</head>
<body>
<p>This is a paragraph with no margin specified</p>
<p class="topmargin">This is a paragraph with a specified top margin</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 |