(div)标签与里面的标签的内边距离
新建 html 文件 11-padding.html
,编写下方程序,运行看看效果吧
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<metahttp-equiv="X-UA-Compatible"content="IE=edge">
<metaname="viewport"content="width=device-width, initial-scale=1.0">
<title>盒子模型padding</title>
<styletype="text/css">
.out-div{
width:200px;
height:200px;
background-color: sandybrown;
/**
padding-left: 20px;
padding-top: 20px;
padding-right: 20px;
padding-bottom: 20px;**/
/**padding:20px;**/
/**padding:20px 30px 40px 50px;**/
padding:10px20px;
}
.in-div{
width:200px;
height:200px;
background-color: silver;
}
</style>
</head>
<body>
<divclass="out-div">
<divclass="in-div"></div>
</div>
</body>
</html>