»» ich will aber dass es so ca. 50px von oben erst beginnt und 50px von unten aufhört... geht aber nicht:/.
Entschuldige die dumme Frage, aber hast dupadding:50px
auch schonmargin-top:50px;
sowiemargin-bottom:50px;
ausprobiert?
Es wäre sicher hilfreich, wenn du uns dein bisheriges zeigen könntest.
das mit dem margin bringt nichts..
hier mein css:
body {
background:#985598 url(bg_new.jpg) repeat-y 50% 10%;
}
#center {
width:800px;
background: #640064;
}
#center_west{
float:left;
background: #640064;
width:560px;
min-height:240px;
padding:5px;
}
#center_west .heading{
margin:0px;
font-size:18px;
font-family:Verdana, Helvetica, sans-serif;
}
#center_west .content{
margin-top:5px;
width:560px;
height:auto;
font-size:14px;
font-family:"trebuchet ms", Times, serif;
}
#center_east{
float:right;
background: #640064;
width:225px;
min-height:240px;
margin:0px;
padding:0px;
}
im html sieht das dann cs so aus:
<div id="body">
.....
<div id="center">
<div id="center_west">
<p class=heading>Das ist eine Überschrift</p>
<p class=content></p>
</div>
<div id=center_east>
hier noch 2 subdivs
</div>
</div>