I want to make a layout like in the picture below
I tried it with this code
* {
box-sizing: border-box;
}
.column2 {
float: left;
padding: 5px;
}
.column {
float: left;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
padding: 5px;
}
<div class="row">
<div class="column2">
<img src="https://placehold.it/700" style="width:100%">
</div>
<div class="column">
<img src="https://placehold.it/320x173" style="width:100%">
<img src="https://placehold.it/320x172" style="width:100%">
</div>
</div>
But i can't add padding between 320x173 and 320x172 images. (I need this in 1366x1080 resolution) How can i padding to this? I need the final result to be like in the image attached