Hey, 2009/12/30 OvermindDL1 <[email protected]>: > I am using a WTreeView to handle displaying of a list of users. You > can see it in action at http://overminddl1.no-ip.info:8030/ and login > with tester/tester and click Members at the top. Now I have tried > making it fill the full space vertically, but it just will not. 100% > height, applying that on every single container in its whole > hierarchy, etc... It just will not go completely vertical in space. > Horizontal is no problem, 100% works just fine. This is not the only
CSS does not support 100% height in the way you would expect it to, and the only way to layout things vertically to stretch space is by using layout managers (which will rely on JavaScript to handle vertical layout). Except for very specific cases (e.g. in a table cell) the effect of a 100% height set on a HTML element is undefined and browsers will implement a different behavior. Regards, koen ------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev _______________________________________________ witty-interest mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/witty-interest
