<html>
<head>
<meta charset="utf-8">
<title>AI悦创(bornforthis.cn)</title>
<style>
div {
width: 200px;
height: 200px;
border-top: 3px dotted green;
border-right: 3px solid red;
border-bottom: 3px dashed orange;
border-left: 3px double blue;
}
</style>
</head>
<body>
<h2>盒子模型演示</h2>
<p>CSS盒模型本质上是一个盒子,封装周围的HTML元素,它包括:边距,边框,填充,和实际内容。</p>
<div>这里是盒子内的实际内容。有 25px 内间距,25px 外间距、25px 绿色边框。</div>
</body>
</html>