DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> DIV十CSS布局 >> 布局基本知識 >> margin-left設置左邊距 CSS左外邊距設置
margin-left設置左邊距 CSS左外邊距設置
編輯:布局基本知識     

margin-left是設置對象左邊距離屬性CSS樣式,是margin細分外邊距樣式。

margin-left通常用於兩個相鄰對象,設置兩個對象左右之間間距排版。(擴展教程margin-right)

可用margin-left設置兩個盒子之間間隔間距
可用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實現間距間隔
對藍色盒子margin-left實現間距間隔

 

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved