flex

by GarfieldKlon

HTML

<div class="container">
 <div class="item1">
 item1
 </div>
 <div class="item2">
 item2
 </div>
 <div class="item3">
 item3
 </div>
</div>

CSS

.container {
    height: 300px;
    background-color: yellow;
    
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    
    justify-content: flex-end;
  
    align-items: flex-end;
}

.item1 {
    width: 100px;
    height: 100px;
    background-color: red;
}

.item2 {
    width: 100px;
    height: 100px;
    background-color: green;
}

.item3 {
    width: 1100px;
    height: 100px;
    background-color: blue;
}