Homepage selbermachen 7.846 Themen, 35.563 Beiträge

Abstand trotz margin: 0px;

Yves3 / 0 Antworten / Flachansicht Nickles

Hallo,

Irgendwie habe ich ständig irgendwelche Probleme mit Margin, das will nie so wie ich will.

Im Moment geht es um einen Abstand von ca. 3 Pixeln zwischen all meinen Tabellenzellen. Mit Cellspacing = "0" kriege ich ihn zwar weg, möchte das aber gerne mit CSS machen.

Das Problem gibt es sowohl im IE7, als auch im Firefox 2.

table {
border-style: solid;
border-width: 1px;
border-color: black;
padding: 0px;
margin: 0px;
width: 600px;
}
td {
background-color: #1996DD;
margin: 0px;
padding: 0px;
border-color: black;
border-left-style: none;
border-right-style: dotted;
border-top-style: none;
border-bottom-style: dotted;
border-width: 1px;
}
th {
background-color: #2353DD;
border-bottom-style: solid;
border-bottom-width: 1px;
margin: 0px;
padding: 0px;
}

EDIT: Es gibt noch ein Border-Spacing. Wenn ich das auf 0 setze, dann funktioniert es im Firefox, im IE aber immer noch nicht.

EDIT2: Das ging ja schnell. Ich habe jetzt auch für dieses Problem noch eine Lösung gefunden: border-collapse: collapse;

bei Antwort benachrichtigen