how to change line through color in css code example
Example 1: css line-through color
span.inner {
color: green;
}
span.outer {
color: red;
text-decoration: line-through;
}
Example 2: how to change line colors in css
hr{
background-color: green;
}