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

Border

Status
Für weitere Antworten geschlossen.

thea

Neues Mitglied
Warum funktioniert das nicht? Nur der Rahmen oben wird angezeigt.

Code:
<style type = "text/css">
body {
background-color: cccccc;
 border-top-width: 100px;
 border-top-style: solid;
 border-top-color: black;
 border-left-width: 100px;
 border-left-style: solid;
 border-left-colrer: red;
 margin:0;
 padding:0;
}

</style>
 
Mach dir das einfacher:

HTML:
<style type = "text/css">
body {
 background-color: cccccc;
 border-top: 100px solid black; 
 border-left: 100px solid red;
 margin:0;
 padding:0;
}
</style>

Warum deine Version nicht funktioniert hat, lag daran, dass du statt "color" eben "colrer" geschrieben hast.
 
aber das funktioniert auch nicht, mit bodrder-top funktioniert es aber:
Code:
<style type = "text/css">
body {
background-color: cccccc;

 border-left-width: 100px;
 border-left-style: solid;
 border-left-color: red;

 margin:0;
 padding:0;
}

woran liegt das denn? wie gesagt, mit border-top funkt. alles wunderbar...
 
Kann es daran liegen, dass ich im <body> nichts stehen habe? Sobald da irgendwas steht, funktioniert das ganze.
Ist es denn nicht möglich einen leeren HIntergrund mit Rahmen oben und links zu ertsellen?
 
Ja, wenn im body nichts steht, hat der body eine Höhe von 0. Und dann wird auch der linke Rahmen nicht angezeigt. Versuche mal height: 100%; hinzuzufügen. Und vor einem Farbcode sollte man ein Gatter # angeben.
Code:
[COLOR=#800080]<style type = "text/css">[/COLOR]
body {
 background-color: [COLOR=Red]#[/COLOR]cccccc;
 border-top: 100px solid black; 
 border-left: 100px solid red;
 margin:0;
 padding:0;
 [COLOR=Red]height: 100%;[/COLOR]
}
[COLOR=#800080]</style>[/COLOR]
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben