How can I move yellow item to right?
float
have no effectalign-self
does not work
HTML
<div class="flex">
<div class="item">A</div>
<div class="item">B</div>
</div>
CSS
.flex {
background: green;
display: flex;
}
.flex .item:first-child {
background: red;
}
.flex .item:last-child {
background: yellow;
}