neuroleptika
Aktives Mitglied
Ja habe ich bereits.
Ging mir auch so.Und das war mehr als ich bisher dachte. :shock:
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
Ging mir auch so.Und das war mehr als ich bisher dachte. :shock:
Der IE sollte keine Probleme haben, wenn das relative positionierte Elternelemnt Layout hat.
Im IE7 ist es durch max-width schon gegeben. Für IE6 muß nachgeholfen werden:
Code:div#Page { max-width:950px; margin:0 auto; position: relative; } * html div#Page { /*z.B:*/width: 900px; }
div#Wrapper {
position:relative;
background-image:url(http://..);
[COLOR="DarkRed"]height:159px;[/COLOR]
}
div#Page {
max-width:950px;
margin:0 auto;
position: relative;
}
* html div#Page {
width: 900px;
}
div#Sidebar {
width:199px;
background:url(http://...) no-repeat;
padding-top:119px;
position:absolute;
[COLOR="DarkRed"]top:-159px;[/COLOR]
left: 0px;
margin-left:0;
}