I should be red

I should be blue

But they're both red in iCab (and this isn't green, but it should be)

And all green in OmniWeb. Incidentally if the selector is supported but the browser has a parsing bug so that whitespace is required between the + and the p's in the selector, then the second paragraph wil be red and the third green, but the second will not be blue.

p {color:red;
}
p+p {
    color:blue;
}
p + p + p {
    color:green;
}

Back to CodeBitch Main Page