Heeft iemand enig idee waarom ik een extra lege regel (in de header) in IE krijg als ik de onderstaande code uitvoer? Als ik overigens de a-tag of b-tag gebruik krijg ik niet zo'n extra lege regel. 
HTML:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <style> thead { background-color: #C1CEDF; } thead h1 { color: #30588B; font-size: 90%; font-weight: bold; } </style> </head> <body> <table border="1"> <thead> <tr> <td> <h1> This text is in the THEAD </h1> </td> </tr> </thead> <tbody> <tr> <td>This text is in the TBODY</td> </tr> </tbody> <tfoot> <tr> <td>This text is in the TFOOT</td> </tr> </tfoot> </table> </body> </html> |