css margin-bottom屬性
翻譯結果:
margin
英[ˈmɑ:dʒɪn] 美[ˈmɑ:rdʒən]
#n.邊緣,範圍;極限;利潤,盈餘;(版心外)的空白
vt.留邊;成為…的邊;加邊於,圍繞;為…加旁注
複數: margins
bottom
英[ˈbɒtəm] 美[ˈbɑ:təm]
n.底部;末端;臀部;盡頭
#adj.底部的
vtt .裝底;測量深淺;找出真相
vi.到達底部;建立基礎
第三人稱單數: bottoms 複數: bottoms 現在分詞: bottoming 過去式: bottomed 過去分詞: bottomed
css margin-bottom屬性語法
作用:設定元素的下外邊距。
說明:允許使用負值。
註解:所有主流瀏覽器都支援 margin-bottom 屬性。
css 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>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例