CSS change

by Kirankumar Dafda

HTML

<span class="startMonth">£12</span>

CSS

.startMonth {
    color: red;
    text-decoration: line-through;
    padding-left: 81px;
    position: "relative"
}
.startMonth::before {
    content: "Special Offer";
    color: green;
    position: absolute;
    left: 0;
}
.startMonth::after {
    content: "FREE";
    color: green;
    position: absolute;
    left: 116px;
}