Strike Through Oblique

Stretching the limits of what (sh/c)ould be done with CSS.

HTML

<span>Strike Through Motherfuckers Alea Iacta Est Motherfuck Assistent Coach</span>

CSS

span {
    position: relative;
    font-size: 48px;
}

span::before {
    content: "";
    border-bottom: 3px solid red;
    width: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ie-transform: rotate(-3deg);
    transform: rotate(-3deg);
}