[Solved] Folded banner using css and border and fade [closed]


Can be done with psuedo-elements.

jsFiddle Demo

div::before {
    content: "";
    position: absolute;
    height: 0;
    width: 0;
    right: 0;
    bottom: -12px;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #AA0000;
}

solved Folded banner using css and border and fade [closed]