Re: CSS Generated content selection

Spartanicus wrote:
> content:"" works in Opera and Mozilla

But isn't equivalent to "content: normal" or "content: none".  Consider the 
following testcase and note that the two divs do not render the same way:

<html>
<style>
div:before { border: 5px solid green; }
div#test:before { content: ""; }
</style>
<div></div>
<hr>
<div id="test"></div>
</html>

Received on Tuesday, 24 April 2007 08:07:55 UTC