:. NEWS .:. ABOUT .:. TRACK RECORD .:. BLOG .:. MUSIC .:. LINKS .:. GUESTBOOK .:
subscribe to feed via email

List of Entries ...

(1) [How to Delete Flash Cookies ... or How to find the Local Storage]
(2) [Safari 5, Flash And The Backspace Key ... Or How Apple Bans Flash from Safari]
(3) [ActionScript3 - Array Clear Performance Test (AS3)]
(4) [Flash-AS3 ByteArray Beats Array Class On Handling Large Data]
(5) [Overheating Acer AMD Turion 64x2 TL-58 Notebook problem]
(6) [Strange table behavior in Chromium / Google Chrom]
(7) [Getting Started With AsUnit 3.0 and FlashDevelop3 in AS3 (Unit Tests)]
(8) [Javascript Pixel Canvas]
(9) [{GERMAN} 3D-Visualisierung auf Mobiltelefonen mit J2ME]
(10) [{GERMAN} Voice Over IP (VoIP)]
(11) [{GERMAN} Parallele Schnittstelle]

- 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!

<table>
    <tr>
        <td>
            &nbsp;
        </td>
    </tr>
</table>

Cheers,
Manuel


Kommentieren / Comment:

Name:

Email (optional):

 Wird nicht angezeigt. Will not be shown.

Kommentar/
Comment:

      

Note: Use plain text only. Javascript, html or css are not allowed.
Hinweis: Nur Klartext verwenden. Javascript, html und css sind nicht erlaubt.