Hallo ich bin gerade dabei über CSS eine Webseite zu erstellen!
Ich habe also ein Main div das 780px breit ist und zentriert dargestellt wird! Nun möchte ich nebem diesem Main Div links und rechts jeweils ein weiteres Div erzeugen um einen Schatten als Bild einzufügen! Das Problem das ich die Container nicht an den Seitenrand bekomme!
Wie mache ich es richtig unten mein Code!!
html
{
height: 100%;
margin: 0px;
padding: 0px;
}
body
{
font: 95% Verdana, Arial, 'Times New Roman', sans-serif;
background-color: #CEBB9B ; /*#A78062*/
color: #CECABF;
text-align: center;
margin: 0px;
padding: 0px;
}
p
{
font-size: 12px;
}
a
{
font-size: 12px;
text-align: left;
}
/* Hauptcontainer */
/* -------------------------------------------------------------------------- */
div#main
{
width: 780px;
max-height: 600px;
/*margin-top: 0 auto;*/
text-align:left;
background-color: #F8EDE1;
color: black;
}
div#logo
{
height: 175px;
margin: 10px;
margin-bottom: 1px;
background-color: #DAC8B4;
color: black;
}
div#navitop
{
width: 760px;
height: 25px;
margin-left: 10px;
background-color: #8B5F46;
color: black;
}
div#topborder
{
width:760px;
line-height: 4px;
margin-left: 10px;
margin-bottom: 20px;
border-bottom: 4px solid #8B5F46;
}
div#navileft
{
width: 175px;
float:left;
margin-left: 10px;
margin-right: 10px;
background-color: C;
color: black;
}
div#linie
{
height: 600px;
width: 1px;
border-right: 1px solid #DAC8B4;
}
div#naviright
{
width:14%;
float:right;
border: 1px dashed #D7D7D7;
line-height:18px;
}
div#content
{
width:64%;
border: 1px dashed #D7D7D7;
background-color: #F8EDE1;
color: black;
}
div#schatten
{
float: left;
width: 15px;
height:500px;
margin-left:25px;
background-image: url(schattenli.jpg);
background-position: right;
background-repeat: repeat-y;
border: 1px dashed #D7D7D7;
}
div#footer
{
width: 780px;
height: 15px;
background-color: #DAC8B4;
color: black;
}
Gruß
Im Anhang ein Bild dazu
Ich habe also ein Main div das 780px breit ist und zentriert dargestellt wird! Nun möchte ich nebem diesem Main Div links und rechts jeweils ein weiteres Div erzeugen um einen Schatten als Bild einzufügen! Das Problem das ich die Container nicht an den Seitenrand bekomme!
Wie mache ich es richtig unten mein Code!!
html
{
height: 100%;
margin: 0px;
padding: 0px;
}
body
{
font: 95% Verdana, Arial, 'Times New Roman', sans-serif;
background-color: #CEBB9B ; /*#A78062*/
color: #CECABF;
text-align: center;
margin: 0px;
padding: 0px;
}
p
{
font-size: 12px;
}
a
{
font-size: 12px;
text-align: left;
}
/* Hauptcontainer */
/* -------------------------------------------------------------------------- */
div#main
{
width: 780px;
max-height: 600px;
/*margin-top: 0 auto;*/
text-align:left;
background-color: #F8EDE1;
color: black;
}
div#logo
{
height: 175px;
margin: 10px;
margin-bottom: 1px;
background-color: #DAC8B4;
color: black;
}
div#navitop
{
width: 760px;
height: 25px;
margin-left: 10px;
background-color: #8B5F46;
color: black;
}
div#topborder
{
width:760px;
line-height: 4px;
margin-left: 10px;
margin-bottom: 20px;
border-bottom: 4px solid #8B5F46;
}
div#navileft
{
width: 175px;
float:left;
margin-left: 10px;
margin-right: 10px;
background-color: C;
color: black;
}
div#linie
{
height: 600px;
width: 1px;
border-right: 1px solid #DAC8B4;
}
div#naviright
{
width:14%;
float:right;
border: 1px dashed #D7D7D7;
line-height:18px;
}
div#content
{
width:64%;
border: 1px dashed #D7D7D7;
background-color: #F8EDE1;
color: black;
}
div#schatten
{
float: left;
width: 15px;
height:500px;
margin-left:25px;
background-image: url(schattenli.jpg);
background-position: right;
background-repeat: repeat-y;
border: 1px dashed #D7D7D7;
}
div#footer
{
width: 780px;
height: 15px;
background-color: #DAC8B4;
color: black;
}
Gruß
Im Anhang ein Bild dazu