Okay, so I saw someone's post on this elsewhere long, long ago, and I was in search of it a while back but could not find it. So, that led me to my own creativity and method of figuring it out. And it seems like there are a few of you out there wondering how to do it as well.
Want to change the colour of your strikethrough or line-through?
Let's go create a 1x3 px, transparent gif/png, and put a single dotof course, with the colour of your choicein the middle of it. Save it as whatever file name you want, but for the example, call it strike.png.
Code:
Use this in your CSS:
.strikemeout{
background:url(strike.png) repeat-x;
background-position:center 3px;
}
Then your HTML...
<span class="strikemeout">Look at me!</span>
Of course, the height position (3px) depends on the size of your txt, so feel free to adjust it as needed.