Is this possible?
I have three DIVS.
#container {
width: 100%;
}
#left {
float: left;
}
#right {
float: left;
}
#right has a UL with LIsthat are floating left.
When I shrink the browser window, I can see the container shrinking. Once it gets too small, #right drops below #left.
If I don't float right, it cascades all the LIs correctly. I would ordinarily just add a margin-left to #right to account for #left's width that is floating over it. However, #left can change width with the help of EXT.js.
Any ideas?