pseudo-selectors

is it too late to suggest pseudo-element and class
selectors?
Going by what I see in practice, I have a couple of
ideas. 

1. ::interior pseudo-element
the contents of the element.

The motivation behind this is all the HTML pages that
use
 <h1><span>heading text</span></h1>

because they want to apply background / border styling
to just the text and not a full-width box. 
this pesudo-element would allow:
 h1::interior
to select that text instead of the <span> element.

2. :between pseudo-class
selects a fictional box between all successive
occurences of the class.

eg:
 h3:between
would create several fictional DIV boxes each like
this:
 <h3>...</h3><DIV (fictional)>
 ...
 </DIV><h3>...</h3>






__________________________________________________
Yahoo! Plus
For a better Internet experience
http://www.yahoo.co.uk/btoffer

Received on Tuesday, 29 April 2003 11:29:35 UTC