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.
2010-07-06, 3646👍, 0💬
Popular Posts:
What is PMP(project management plan)? The project management plan is a document that describes the p...
Advantages of a macro over a function? Macro gets to see the Compilation environment, so it can expa...
Enable ASP.NET polling using “web.config” file Now that all our database side is configured in order...
How To Get the Uploaded File Information in the Receiving PHP Script? Once the Web server received t...
How can you raise custom errors from stored procedure ? The RAISERROR statement is used to produce a...