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

bg-color in div?

Status
Für weitere Antworten geschlossen.

zajawong

Neues Mitglied
tag ^^

und zwar hab ich folgendes prob :

HTML:
<bla bla bla><style usw. bla bla>
#text {
   position:absolute;
   top:0px;
   left:33%;
   width:0px;
   padding:0px;
   margin:3px;
   border:0px solid #000000;
   background-color:#aaaaaa;
}
</style>
</bla bla>
<body>
<div id="text">
  <p>test
</div>
</body>

so funzt auch alles prima außer, dass die bg-color weiss bleibt. wenn ich in css bspw. einfach ein #text { background-color:#aaaaaa } anlege dann funzt das. aber sobald ich die position des elements bestimme geht nix mehr. :(
wo ist der fehler bzw. was kann ich da machen?
 
Hmm, finde jetzt auf anhieb nur, das du in deinem DIV ein <p> auf, aber nicht mehr zu machst. Schau mal, ob dir ein Validor helfen kann.

Corvulus
 
Der Style muss in den head-Bereich geschrieben werden, nicht in den Body-Bereich wie in deinem Beispiel oben.

Es liegt daran, nicht daran, dass du innerhalb des divs ein p-Element hast.
 
Ups... das einfachste mal weider übersehen.

HTML:
<html><head><style type="text/css">
#text {
 position:absolute;
 top:0px;
 left:33%;
 width:0px;
 padding:0px;
 margin:3px;
 border:0px solid #000000;
 background-color:#aaaaaa;
}
<style></head><body>
<div id="text"><p>test</p></div>
</body></html>
So sollte das dann aussehen.

Corvulus
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben