當前位置:軟件學堂 > 資訊首頁 > 網絡編程 > DIV+CSS > css margin-left左側邊界屬性

css margin-left左側邊界屬性

2012/11/26 19:09:48作者:佚名來源:網絡

移動端

【實例介紹】

css margin-left左側邊界屬性

margin-left屬性設置元素的左外邊距。

【基本語法】

margin-left:length

【語法介紹】

檢索或設置對象左邊的外延邊距。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標題文檔</title> <style type="text/css"> p.leftmargin {margin-left: 2cm} </style> </head> <body> <p>這個段落沒有指定外邊距。</p> <p class="leftmargin">這個段落帶有指定的左外邊距。</p> </body> </html>

【代碼分析】

在代碼中,加粗部分的標記是設置左外邊距,在瀏覽器中預覽,效果如圖所示。

左側邊界屬性margin-left運行效果

【素材及源碼下載】

請點擊:左側邊界屬性css margin-left 下載本實例相關素材及源碼

 

標簽: css margin-left  左側邊界  屬性