• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

top: 0px; ohne position: absolute;

Status
Für weitere Antworten geschlossen.

lama

Neues Mitglied
Hallo!
Ich habe folgendes Problem mit meinem aktuellen Projekt:

Die Seite ist 775 px (Damit auch 800*600 User sie gut anschauen können) breit und zentriert.

Code:
#page{
width: 775px;
margin: auto;
padding: 0px;
}

Doch jetzt ist sie in allen Browsern ein kleines bisschen vom oberen rand weg (ca. 10 px. im FF)

Was muss ich angeben, damit sie direkt am oberen Rand beginnt, OHNE

Code:
position: absolute;
top: 0px;

da dann das automatische zentrieren durch margin: auto; nicht mehr geht

Danke für eure hilfe!
 
Hast du body überhaupt verarbeitet?

DU musst es in CSS so anwednen:
Code:
body {
top-margin: 0px;
left-margin: 0px;
right-margin: 0px;
bottom-margin: 0px;
}

Du musst zuerst Bei Body den Margin bestimmen...

MfG, matibaski
 
So:

Code:
body { margin: 0px;padding: 0px; }
#page{
width: 775px;
margin: 0px auto;
padding: 0px;
}
Bei "margin: 0px auto;" ist "0px" der vertikale, und "auto" der horizontale Außenabstand.


@matibaski: "top-margin" gibt es nicht, das heißt "margin-top" ;-)
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben