边距的使用
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
*{margin: 0;padding:0 ;}
*/
div
[class="1"]{width: 200px;
height: 200px;
background-color: blue;
border-top: 20px;
border-top-width: 90px;
border-top-style: solid;
border-top-color: cornsilk;
border-right-width: 90px;
border-right-style: solid;
border-right-color: crimson;
border-bottom-width: 90px;
border-bottom-style: solid;
border-bottom-color: yellow;
border-left-width: 90px;
border-left-style: solid;
border-left-color: transparent
border:100px;solid实线 transparent
}
</style>
</head>
<body>
<div class="1">
13
</div>
</body>
</html>