Можно сделать float: left по классу,
дать одному блоку Id и проставить по margin.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style type="text/css">
#box {
width: 600px;
height: 400px;
padding: 30px;
background-color: pink
}
.block {
height: 150px;
width: 200px;
background-color: green;
float: left;
}
.stupid {
margin-top: 30px;
margin-left: 30px;
}
#low {
margin-top: 60px
}
</style>
</head>
<body>
<div id="box">
<div class="block"></div>
<div class="block stupid"></div>
<div class="block stupid"></div>
<div class="block stupid" id="low"></div>
</div>
</body>
</html>
Зачем grid ? Зачем flex ?
Зачем position: absolute ?
И так нормально, если оно работает значит задача выполнена . - )
Жду критиков, и absolutnых чемпионов flexа. : - D