searching for this functionality, i came across the 2001 draft, which specified column-span
to be defined as none | all | <integer> | inherit
. i don’t get the none
(spans no columns? does that mean display:none
‽), but other than that, it’s nice. it even comes with this useful picture.
code is sth. along the lines of:
article { column-count: 3 }
h1 { column-span: all }
h2 { column-span: 2 }
a bit history: it was abolished in 2005. 2007, it was re-introduced with the values 1 | all
, wich became none | all
2011 (reintroducting the nonsensical none
).
my question: why was this property so badly curtailed? is there any reasoning behind that? (and behind the none
)