Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the main difference between Gridlayout and FlowLayout
What is the main difference between Gridlayout and FlowLayout ?
✍: Guest
GridLayout provides absolute positioning for controls placed on the page. Developers
that have their roots in rich-client development environments like Visual Basic will find
it easier to develop their pages using absolute positioning, because they can place items
exactly where they want them. On the other hand, FlowLayout positions items down the
page like traditional HTML. Experienced Web developers favor this approach because it
results in pages that are compatible with a wider range of browsers.
If you look in to the HTML code created by absolute positioning you can notice lot of
DIV tags. While in Flow layout you can see more of using HTML table to position elements
which is compatible with wide range of browsers.
2007-10-24, 5675👍, 0💬
Popular Posts:
If client side validation is enabled in your Web page, does that mean server side code is not run? W...
What is difference between Association, Aggregation and Inheritance relationships? In object oriente...
Is XHTML Element Name Case Sensitive? - XHTML Tutorials - Introduction To Tag and Attribute Syntax Y...
How do you pass control from one JSP page to another? Use the following ways to pass control of a re...
What is the sequence of UML diagrams in project? First let me say some fact about this question, you...