그라디언트를 사용하여 선을 위조하는 접근법이 있습니다. 여러 줄로 표시되며 추가 DOM 요소가 필요하지 않습니다. 그러나 배경 그라디언트이므로 텍스트 뒤에 있습니다 ...
del, strike {
text-decoration: none;
line-height: 1.4;
background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.63em, transparent), color-stop(0.63em, #ff0000), color-stop(0.7em, #ff0000), color-stop(0.7em, transparent), to(transparent));
background-image: -webkit-linear-gradient(top, transparent 0em, transparent 0.63em, #ff0000 0.63em, #ff0000 0.7em, transparent 0.7em, transparent 1.4em);
background-image: -o-linear-gradient(top, transparent 0em, transparent 0.63em, #ff0000 0.63em, #ff0000 0.7em, transparent 0.7em, transparent 1.4em);
background-image: linear-gradient(to bottom, transparent 0em, transparent 0.63em, #ff0000 0.63em, #ff0000 0.7em, transparent 0.7em, transparent 1.4em);
-webkit-background-size: 1.4em 1.4em;
background-size: 1.4em 1.4em;
background-repeat: repeat;
}
피들 참조 : http://jsfiddle.net/YSvaY/
그라디언트 색상 정지 및 배경 크기는 선 높이에 따라 다릅니다. (나는 나중에 계산 및 자동 접두사에 LESS를 사용했습니다 ...)