Hmmm ich hab da ein kleines Problem mit overflow:hidden im Internet Explorer.
Hier die Seite --> Nelly's Stallgewieher
Eigentlich beabsichtige ich mit overflow:hidden dass die oberen Ecken des Logos abgeschnitten werden. FF stellt es auch richtig dar.
Was ich bisher an Infos dazu gefunden habe ist, dass der entsprechende Container position:relative zusätzlich zum overflow:hidden haben muss....aber das ist ja bei mir der Fall...welchen Fix muss ich noch einbauen?
#logo ist das div welches das Bild enthält und über das div #rahmen nicht hinausragen soll:
meine CSS:
Hier die Seite --> Nelly's Stallgewieher
Eigentlich beabsichtige ich mit overflow:hidden dass die oberen Ecken des Logos abgeschnitten werden. FF stellt es auch richtig dar.
Was ich bisher an Infos dazu gefunden habe ist, dass der entsprechende Container position:relative zusätzlich zum overflow:hidden haben muss....aber das ist ja bei mir der Fall...welchen Fix muss ich noch einbauen?
#logo ist das div welches das Bild enthält und über das div #rahmen nicht hinausragen soll:
meine CSS:
Code:
html, body{
font-family : Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
background: url(../images/background2.jpg);
background-repeat: repeat-x;
width: 100%;
height: 99%;
margin: 0;
}
#rahmen{
border: solid #000000 1px;
width: 1000px;
margin: auto !important;
margin-bottom: 10px !important;
margin-top: 5px !important;
background-color: #FFFFFF;
-webkit-box-shadow: 5px 5px 15px #0D030C;
-moz-box-shadow: 5px 5px 15px #0D030C;
box-shadow: 5px 5px 15px #0D030C;
position: relative;
min-height: 100%;
height: auto !important;
height: 100%;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px;
behavior: url(/PIE.htc);
overflow:hidden;
}
#logo{
border-bottom: solid #000000 1px;
height: 232px;
width: 1000px;
float: left;
margin: 0px auto;
-webkit-border-top-left-radius: 15px;
-moz-border-radius-topleft: 15px;
border-top-left-radius: 15px;
-webkit-border-top-right-radius: 15px;
-moz-border-radius-topright: 15px;
border-top-right-radius: 15px;
behavior: url(/PIE.htc);
}
#navigation{
float: left;
width: 130px;
margin: 0px 0px 30px 0px;
display: inline;
padding-top: 30px;
padding-left: 20px;
padding-bottom: 80px;
behavior: url(/PIE.htc);
}
#inhalt{
background-color: #FFFFFF;
width: 760px;
padding: 20px;
float: left;
}
#pagebrake{
height: 20px;
clear: both;
}
#footer{
background-color: #aa55ff;
position: absolute;
bottom: 12px;
text-align: right;
height: 15px;
width: 1000px;
}
.fb-like{
position: relative;
top: 40px;
left: 8px;
}
.sticker{
position: relative;
top: 70px;
left: 3px;
behavior: url(/PIE.htc);
}
A.navnormal{
color: #000000;
font-size: 10px;
text-decoration: none;
}
.center{
font-family : Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
text-align: center;
line-height: 1.5;
}
.left{
font-family : Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
text-align: left;
line-height: 1.5;
}
.justify{
font-family : Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
color: #000000;
text-align: justify;
line-height: 1.5;
}
h1 {
color: #000000;
font-size: 14px;
font-weight: bold;
}
h2 {
color: #000000;
font-size: 13px;
}
h3{
color: #000000;
font-size: 12px;
}
*+html, * html{
width:1%;
}