hartnäckiger abstand

Status
Nicht offen für weitere Antworten.
Probier's mal mit folgendem Stylesheet:

Code:
*
{
margin: 0;
padding: 0;
}

body
{
background-color:#454545;
}

div.head
{
background-image:url(head.jpg);
width:582px;
height:150px;
}

div.body
{
background-image:url(body-bg.jpg);
width:582px;
height:800px;
}

div.foot
{
background-image:url(foot.jpg);
width:582px;
height:13px;
}
Korrigierter HTML-Code (Fehlende Einheit px für padding-top hinzugefügt):
HTML:
<html>
 <head>
  <title>Devi's Page</title>
  <link rel="stylesheet" type="text/css" href="style.css">
 </head>
 <body>
  <div align="center">
   <div class="head"></div>
   <div class="body">
    <p align="center" style="padding-top:100px;">
     <img src="wip.jpg" width="456" height="175" border="0" alt="work in progress">
    </p>
   </div>
   <div class="foot"></div>
  </div>
 </body>
</html>
 
Status
Nicht offen für weitere Antworten.
Zurück