Re: Text Flow

> 
> 
> Apologies if this is a common request, but I haven't seen it  
> discussed, and could find no mention of it anywhere in the spec...

It's been made at least once before.
> 
> #firstDiv
> {
> 	text-overflow: id(#secondDiv);
> }

This is a clear abuse of the DIV element.  You are introducing a 
DIV element which doesn't represent a structural element in the document
(and with the intention that the content be rendered as though arbitrarily
split into two different divisions).

The Holy Grail of CSS is to eliminate the need to misrepresent the 
structure of the document in order to get a desirable rendering.

Also note that there will be valid cases in which secondDiv is not 
used at all, and things would get interesting if secondDiv preceded 
firstDiv and its size wasn't fully constrained.

Received on Friday, 7 April 2006 04:40:30 UTC