soyadios
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css盒模型.css">
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div>

</div>
<div>

</div>
</body>
</html>
css样式
div:first-child{
width:200px;
height:200px;
background-color: pink;
box-sizing: content-box;
/* 就是以前的盒模型 w3c*/
padding: 10px;
border:15px solid red;
}
div:last-child{
width:200px;
height: 200px;
background-color: purple;
padding: 10px;
box-sizing: border-box;
border: 15px solid red;
}
/*现在新的盒模型*/

分类:

技术点:

相关文章:

  • 2021-08-29
  • 2021-05-16
  • 2021-10-02
  • 2022-12-23
  • 2021-10-22
  • 2021-12-14
猜你喜欢
  • 2021-12-02
  • 2022-12-23
  • 2022-12-23
  • 2021-12-28
  • 2021-07-25
  • 2021-09-09
  • 2021-09-05
相关资源
相似解决方案