Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4737👍, 0💬
Popular Posts:
How To Define a Sub Function? - Oracle DBA FAQ - Creating Your Own PL/SQL Procedures and Functions A...
Can you have virtual functions in Java? Yes, all functions in Java are virtual by default. This is a...
How To Apply Filtering Criteria at Group Level? - MySQL FAQs - SQL SELECT Query Statements with GROU...
What is hashing? To hash means to grind up, and that's essentially what hashing is all about. The he...
.NET INTERVIEW QUESTIONS - What is Multi-tasking ? It’s a feature of modern operating systems with w...