margin-left是設置對象左邊距離屬性CSS樣式,是margin細分外邊距樣式。
margin-left通常用於兩個相鄰對象,設置兩個對象左右之間間距排版。(擴展教程margin-right)
可用margin-left設置兩個盒子之間間隔間距
以上圖文說明,相鄰兩個盒子之間間距間隔,可以對後者設置margin-left左外邊距來實現間隔排版。
margin-left應用div css實例代碼:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>margin-left左間隔間距 ThinkCSS實例</title>
<style>
.div1,.div2{float:left;width:200px;height:100px;}
.div1{border:2px solid #F00}
.div2{margin-left:20px;border:2px solid #00F}
</style>
</head>
<body>
<div class="div1">紅色DIV盒子</div>
<div class="div2">藍色DIV盒子</div>
</body>
</html>
截圖:
對藍色盒子margin-left實現間距間隔