DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS特效代碼 >> 實例看padding與margin的區別
實例看padding與margin的區別
編輯:CSS特效代碼     
代碼一:全為padding。

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>margin||padding</title>
<style type="text/css">
#div1{
width: 800px;
background-color: red;
padding: 20px;/*840px*/
}
#div2{
background-color: green;
padding: 20px;/*800px*/
}
#div3{
background-color: blue;
padding: 20px;/*760px*/
}
</style>
</head>
<body>
<div id="div1">
<div id="div2">
<div id="div3">
內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容。
</div>
</div>
</div>
</body>
</html>

div1,div2,div3的寬度分別為840px,800px,760px。



代碼二:全為margin。

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>margin||padding</title>
<style type="text/css">
#div1{
width: 800px;
background-color: red;/*800px*/
}
#div2{
background-color: green;
margin: 20px;/*760px*/
}
#div3{
background-color: blue;
margin: 20px;/*720px*/
}
</style>
</head>
<body>
<div id="div1">
<div id="div2">
<div id="div3">
內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容。
</div>
</div>
</div>
</body>
</html>

div1,div2,div3的寬度分別為800px,760px,720px。


代碼三:包含padding和margin。

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>margin||padding</title>
<style type="text/css">
#div1{
width: 800px;
background-color: red;
padding: 20px;/*840px*/
}
#div2{
background-color: green;
padding: 20px;
margin: 20px;/*760px*/
}
#div3{
background-color: blue;
padding: 20px;
margin: 20px;/*680px*/
}
</style>
</head>
<body>
<div id="div1">
<div id="div2">
<div id="div3">
內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容內容。
</div>
</div>
</div>
</body>
</html>

div1,div2,div3的寬度分別為840px,760px,680px。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved