Solution (Clean Solution)
Date of the Solution
Mon Aug 10 05:08:40 2009
Fixed Versions
All of the affected
Description
I'm writing this solution only in the spirit of simply having one (as well as showing that the bug is indeed due to the comment) because I doubt any sane person would love to have a comment right in the middle of the selector, never mind leaving it there after finding out what causes the bug :) Let's glance at what we got here:
Due to the nature of the bug, fixed demo is available on a separate page
- HTML Code:
<div></div>
- CSS Code:
div {
width: 200px;
padding: 50px;
margin: 0 auto;
background: #ddd;
}
html > body div {
background: #00f;
}
Not much to say here. Our comment is gone and so is the bug.