m3x
Ensign
- Registriert
- Aug. 2005
- Beiträge
- 218
Bin grade an einer Homepage. Habe einen weißen body. Jetzt möchte ich die Ecken abrunden, und dem body einen Schatten verpassen. Jetzt habe ich auch 3 Bilder (rechts links oben), diese ausgerichtet, sieht super aus, Problem ist nur, dass, sobald ich versuche text unterzubringen sich alles verschiebt.
Habe zum bessern Verständnis noch 2 Bilder angehängt, in dem einen sind die Elemente Markiert (blau: body, rot:Bilder)
Meine HTML-Code:
Die CSS:
Bin halb am verzweifeln....
Habe zum bessern Verständnis noch 2 Bilder angehängt, in dem einen sind die Elemente Markiert (blau: body, rot:Bilder)
Meine HTML-Code:
HTML:
<div id="header">
<div class="head_c">
<div class="head_l">
<div class="head_r">
<p>Text Text Text Text Text</p>
<p>Text Text Text Text Text</p>
<p>Text Text Text Text Text</p>
</div>
</div>
</div>
</div>
Die CSS:
Code:
*{
margin: 0px;
padding: 0px;
}
body{
color: #000;
background: rgb(109, 159, 192) url(../images/background.jpg) 0 0 repeat-x;
text-align:center;
margin-top: 70px;
margin-bottom: 20px;
}
#header{
float:left;
width: 760px;
height: 130px;
background-color: #FFF;
}
.head_l{
position:relative;
width:18px;
height: 140px;
top: 0px;
left: -10px;
background: transparent url(../images/header_l.png) no-repeat;
}
.head_r{
position:relative;
width:18px;
height: 140px;
top: 0px;
left: 762px;
background: transparent url(../images/header_r.png) no-repeat;
}
.head_c{
height: 30px;
width: 760px;
position:relative;
margin: 0px;
top: -10px;
left: 0px;
background: transparent url(../images/header_c.png) 100% 0 repeat-x;
}
Bin halb am verzweifeln....