- Strange table behavior in Chromium / Google Chrom
My javascript table canvas did not work with the browsers Chromium and Google Chrome: The reason is that these browsers do not tolerate empty table cells. Putting empty img-tags into the cells makes them appear again, though! This reminds me on the old Netscape browsers (say 4.7), which had a similar problem.
Postet on 2009/1/18
Kommentare / Comments:
(2009.01.13 20:03:37) andi: you con also do that:
[table]
[tr]
[td]
[/td]
[/tr]
[/table]
(2009.01.13 20:06:28) Manuel: Yes, that is correct, but in some browsers the cell-height changes to the line height of the standard font. That's not what I wanted.
Cheers and thanks,
Manuel
(2009.01.13 20:09:24) andi: <table>
<tr>
<td>
</td>
</tr>
</table>
(2009.01.13 20:10:22) andi: use nbsp (f****g no html-allowed) ;)
(2009.01.13 20:11:58) Manuel: Yeah, gotta test my stuff some more. I'm gonna fix it.
(2009.01.13 21:21:56) Manuel: This was what you probably wanted to post.
Well, it is now possible to do that!
Kommentare / Comments:
(2009.01.13 20:03:37) andi:
you con also do that:
[table]
[tr]
[td]
[/td]
[/tr]
[/table]
(2009.01.13 20:06:28) Manuel:
Yes, that is correct, but in some browsers the cell-height changes to the line height of the standard font. That's not what I wanted.
Cheers and thanks,
Manuel
(2009.01.13 20:09:24) andi:
<table>
<tr>
<td>
</td>
</tr>
</table>
(2009.01.13 20:10:22) andi:
use nbsp (f****g no html-allowed) ;)
(2009.01.13 20:11:58) Manuel:
Yeah, gotta test my stuff some more. I'm gonna fix it.
(2009.01.13 21:21:56) Manuel:
This was what you probably wanted to post.
Well, it is now possible to do that!
<table>
<tr>
<td>
</td>
</tr>
</table>
Cheers,
Manuel
Kommentieren / Comment: