Adarsh• 1,640
@adram3l3ch
Posted
You can align the span cost-month by wrapping the cost and cost-month in a div apply a display of flex on it.
<div class="price-flexbox">
<span class="cost">$29</span>
<span class="cost-month">per month</span>
</div>
.price-flexbox{
display:flex;
align-items:center;
gap:1rem;
}
Marked as helpful
1