Margin-Top zeigt keine wirkung

  • Themenstarter Themenstarter chaosente
  • Beginndatum Beginndatum
Status
Nicht offen für weitere Antworten.
C

chaosente

also ich habe für meinen footer eine box und darineine box in die der content reinkommt...
HTML:
<div id="footer">
   <div class="content">

  </div>
</div>

Nun soll .content recht, links, oben und unten 10px abstand nach außen haben , hab mir gedacht mache ich einfach mit margin, aber margin top zeigt dabei keinerlei wirkung. Woran kann das liegen?

HTML:
#footer {
width: 820px;
height:70px;
margin-left:auto;
margin-right:auto;
margin-top:10px;
margin-bottom:10px;
background: url(../images/footer.png) no-repeat;
}

#footer>div.content {
width:800px;
height:50px;
margin: 10px;
}
 
Hi,

wende mal dieses Stylesheet an:

Code:
#footer {
width: 800px;
height:50px;
margin-left:auto;
margin-right:auto;
margin-top:10px;
margin-bottom:10px;
background: url(../images/footer.png) no-repeat;
padding: 10px;
}

#footer div.content {
width:800px;
height:50px;
}
 
Status
Nicht offen für weitere Antworten.
Zurück