например так:
.container {
margin-left: -10px;
}
.block{
float: left;
width: 25%;
padding: 10px 0 0 10px;
height: 100px;
background: grey;
background-clip: content-box;
}
или так:
.container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.block{
width: calc(25% - 10px);
height: 100px;
background: grey;
background-clip: content-box;
}
или так:
.container {
margin-left: -10px;
}
.block {
float: left;
width: calc(25% - 10px);
height: 100px;
background: grey;
margin-top: 10px;
margin-left: 10px;
}