gridlayout or flowlayout

  • Thread starter Thread starter Nikhil Patel
  • Start date Start date
N

Nikhil Patel

Hi all,
If I know that the size of the browser window is going to be fixed, can I
use gridlayout?

Thanks...
-Nikhil
 
You can use GridLayout whenever you want. I personally hate it (even when I
know the size of the target). I use FlowLayout for all the pages and when I
have a particular piece of content that needs to be positioned absolutly, I
put it inside a <SPAN> tag and absolutley position the tag.
 
you also need to standardize the screen resolution, installed fonts and
display font size (display properties->settings->advanced->font size)

you can use grid for layouting panels (div's), then flow for the elements in
the panels, (vs does not support this directly)

-- bruce (sqlwork.com)
 
Back
Top