Is there a way to position the image on the right side of the card without using margin-left? I want to avoid issues where the image drops to the next line if the title is too long.
<div class="block_container1">
<div class="tit" *ngFor="let c of cdata">{{c.name}}</div>
<div style="text-align: right;"><img src="assets/imgs/32.png"></div>
</div>
.block_container1 > div {
display: inline-block;
vertical-align: middle;
}