I am trying to make the text shadow effect as per the example below:
This is what I have created:
.yb-shipping {
color: #f2de4d;
font-family: Arial,Helvetica,sans-serif;
font-size: 22px;
font-weight: bold;
text-shadow: 0 0 2px rgba(1, 96, 116, 1);
text-transform: uppercase;
}
<div class="yb-shipping">Free Shipping</div>
Not able to make as attached, should I try something else except text-shadow?
Please suggest
