MyBB Community Forums

Full Version: Colored Strikethrough?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to make colored strikethrough?
Mycodes. Smile
You do mean http://lmgtfy.com/?q=html+color+strikethrough right?
Also maybe this?

1. <html>
2. <head>
3. <style type="text/css">
4. h1 {text-decoration: overline}
5. h2 {text-decoration: line-through}
6. h3 {text-decoration: underline}
7. a {text-decoration: none}
8. </style>
9. </head>
10.
11. <body>
12. <h1>This is header 1</h1>
13. <h2 ><strike style="color:blue">This is header 2</strike></h2>
14. <h3>This is header 3</h3>
15. <p><a href="http://www.w3schools.com/default.asp">This is a link</a></p>
16. </body>
17.
18. </html>