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 a fixed-width table and its advantages?
What is a fixed-width table and its advantages?
✍: Guest
Fixed width tables are rendered by the browser based on the widths of the columns in the first row, resulting in a faster display in case of large tables. Use the CSS style table-layout:fixed to specify a fixed width table.
If the table is not specified to be of fixed width, the browser has to wait till all data is downloaded and then infer the best width for each of the columns. This process can be very slow for large tables.
2008-05-13, 6225👍, 0💬
Popular Posts:
What is the difference between const char* p and char const* p? In const char* p, the character poin...
What does static variable mean? There are 3 main uses for static variables: If you declare within a ...
How To Select an Oracle System ID (SID)? - Oracle DBA FAQ - Creating New Database Instance Manually ...
When should the method invokeLater() be used? This method is used to ensure that Swing components ar...
What is AL.EXE and RESGEN.EXE? In the previous question you have seen how we can use resource files ...