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, 4874👍, 0💬
Popular Posts:
Can you explain why your project needed XML? Remember XML was meant to exchange data between two ent...
What is the sequence of UML diagrams in project? First let me say some fact about this question, you...
What are the different accessibility levels defined in .NET ? Following are the five levels of acces...
Which one of the following statements is TRUE in regard to overloading the ++ operator? 1 You cannot...
How do we generate strong names ? or What is use the of SN.EXE ? or How do we apply strong names to ...