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:
Extra White Spaces before or after Tables
Why is there extra white space before or after tables?
✍: FYIcenter
This is often caused by invalid HTML syntax. Specifically, it is often
caused by loose content within the table (i.e., content that is not
inside a TD or TH element). There is no standard way to handle loose
content within a table. Some browsers display all loose content before or
after the table. When the loose content contains only multiple line
breaks or empty paragraphs, then these browsers will display all this empty
space before or after the table itself.
The solution is to fix the HTML syntax errors. All content within a
table must be within a TD or TH element.
2007-03-03, 6045👍, 0💬
Popular Posts:
Can we have static indexer in C# ? No.
What does a special set of tags <?= and ?> do in a PHP script page? <?= express...
.NET INTERVIEW QUESTIONS - Where do you specify session state mode in ASP.NET ? The following code e...
If locking is not implemented what issues can occur? IFollowing are the problems that occur if you d...
How To Wirte a Simple JUnit Test Class? This is a common test in a job interview. You should be able...