
.through {

    position: relative;
}


.through:before {
    content: '';
    position: absolute;
    margin-top: 10px;
    width: 50px;
    border-bottom: 2px solid red;
    transform: rotate(-20deg);
    -webkit-transform: rotate(-20deg);
	 left: 1px;
}
.through:after {
    content: '';
    position: absolute;
    margin-top: 10px;
    width: 50px;
    border-bottom: 2px solid red;
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
	 left: 1px;
}