e7: table in mozilla nicht auf 100 PROZENT

Beitrag lesen

Hi,

html, body { margin:0; border:0 none; padding:0; }

noch korrekter wäre folgendes:

body { margin:0px; border:0px none; padding:0px; }

1. reicht Body völlig aus (head wird nicht dargestellt etc.)
2. px, damit Mozilla weiß, welche Einheit gemeint wird. Ohne irgendeine Angabe funktionierts nicht immer (border: 1 solid black zum Beispiel)

E7