P粉5233350262023-08-14 13:09:51
Not perfect, but this is how it is done on the card, position: absolute
on the bow which allows you to position the bow in the desired position on the card.
.card { display: flex; align-items: center; position: relative; width: 300px; height: 150px; border: 1px solid #ccc; border-radius: 8px; padding: 20px; background-color: #fff; } .ribbon { position: absolute; top: 10px; left: 0px; background-color: #e74c3c; color: #fff; padding: 5px 15px; }
<div class="card"> <div class="ribbon">Side Offer</div> <h3>Card Content</h3> <p>This is some content inside the card.</p> </div>