What steps will reproduce the problem?
create columns as per example (writing into several spans)
use special CSS with nth-child
does not work for current IE.
FIX:
replace by similiar CSS2 construct
use +* instead of nth-child
first-child +*
first-child +* +*
etc.
tested in current IE, FF and chrome.
I think also valid for ca. IE7+:
ul.fancytree-container span.td {
position: absolute;
display: inline;
border-size: 1px;
overflow: hidden;
background-color: white;
}
ul.fancytree-container span.td:first-child {
position: static;
width: 150px;
}
ul.fancytree-container span.td:first-child +* {
left: 600px;
width: 150px;
}
ul.fancytree-container span.td:first-child +* +* {
left: 750px;
width: 250px;
}
Original issue reported on code.google.com by buech...@gmail.com on 27 Aug 2014 at 5:40
Original issue reported on code.google.com by
buech...@gmail.com
on 27 Aug 2014 at 5:40