Web速查-索引

Alt text

定义

margin-top 属性设置元素的上外边距。

注意:允许使用负值。

语法

margin-top:auto|length|%|inherit;

属性值

说明
auto 浏览器设置的上外边距。
length 定义固定的上外边距。默认值是 0。
% 定义基于父对象总高度的百分比上外边距。
inherit 规定应该从父元素继承上外边距。

实例

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>鱼C-零基础入门学习Web(Html5+Css3)</title>
<style type="text/css">
.topmargin {margin-top: 100px}
</style>
</head>
<body>
<p>这个段落没有指定外边距。</p>
<p class="topmargin">这个段落带有指定的上外边距(100px)。</p>
</body>
</html>

这个段落没有指定外边距。

这个段落带有指定的上外边距(100px)。

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号

Safari Chrome FireFox IE
3.0 3.0 3.0 8.0