<!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;
}
.box{
width: 200px;
height: 300px;
background-color: red;
/*
margin 外边距
上外边距 margin-top
下外边距 margin-bottom
左外边距 margin-left
*/
margin-top:50px;
margin-bottom: 60px;
margin-left: 20px;
margin-right: 30px;
}
.text{
margin-right: 50px;
}
</style>
</head>
<body>
<div class="box"></div>
<span style="background-color: pink;" class="text">1111</span><span style="background-color: yellow;">2222</span>
</body>
</html>