SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
  <head></head>
  <body>
    <div class="div-first">
       我是一个盒子1
    </div>
    <div>
       我是一个盒子2
    </div>
    <div>
       我是一个盒子3
    </div>
  </body>
</html>
*{
  box-sizing: border-box
}

body{
  margin:0
}

div{
  padding:8px;
  border:2px solid yellow;
  margin:10px;
  height:300px;
  width:calc(50% - 23px);
  display:inline-block;
}

.div-first{
  display:none
}