代碼一:全為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。