Gerd: Bild ragt aus Container 100% Breit, 400px hoch

Beitrag lesen

Jetzt geht es fast,
doch wenn ich oberhalb noch einen header habe, ist dieser weg.

header{
width:100%;
height:200px;
background:#000;
}
.container {
width:100%;
height:400px;
position: relative;
}
img {
min-width: 100%;
min-height: 100%;
position: absolute;
bottom: 0 ;
}
</style>

</head>
<body>
<div class="header">hallo</div>
<div class="container">
<img src="pic100.jpg">
</div>