定義和用法
margin-top 屬性設定元素的上外邊距。
注釋:允許使用負值。
默認值: | 0 |
繼承性: | no |
版本: | CSS1 |
JavaScript 語法: | object.style.marginTop="10px" |
設定 p 元素的上外邊距:
p {margin-top:2cm;}
瀏覽器支持
所有主流瀏覽器都支持 margin-top 屬性。
注釋:任何的版本的 Internet Explorer (包括 IE8)都不支持屬性值 "inherit"。
可能的值
值 | 描述 |
auto | 瀏覽器設定的上外邊距。 |
length | 定義固定的上外邊距。默認值是 0。 |
% | 定義基於父對象總高度的百分比上外邊距。 |
inherit | 規定應該從父元素繼承上外邊距。 |
TIY 實例
設定文本的上外邊距 1
本例演示如何使用厘米值來設定文本的頂邊距。
<html>
<head>
<style type="text/css">
p.topmargin {margin-top: 5cm}
</style>
</head>
<body>
<p>這個段落沒有指定外邊距。</p>
<p class="topmargin">這個段落帶有指定的上外邊距。</p>
</body>
</html>