Why is text-decoration not applying to a span inside a div after floating the span, and how can this be fixed?
To see the issue in action, visit: http://jsfiddle.net/wtBDX/2/
div {
color: red;
text-decoration: line-through;
}
div span {
float: right;
}