Undo strikethrough

by austinpray

HTML

<h1 class="strikethrough">
    stricken<span class="no-strikethrough"> no strike</span>
</h1>

CSS

.strikethrough {
    text-decoration: line-through;
    color: blue;
}

.no-strikethrough {
    display:inline-block;
    text-decoration: none;
    color: red;
}
.no-strikethrough:before {
    content: '\00a0';
}