When using a div with the text-decoration style it does not seem to apply it on a span inside the div after floating that span. What is the explanation for this and how can I fix it?
See my problem here: http://jsfiddle.net/wtBDX/2/
div {
color: red;
text-decoration: line-through;
}
div span {
float: right;
}