Hallo!
Hi,
div#hauptbox {
height: 452px;
width: 800px;
margin: auto;
background-color: #ff0000;
}
div#textbox{
height: 452px;
width: 200px;
background-color: #00ff00;
float: left;
}
div#hauptbox img{
border: 1px solid #bfbfbf;
}
Probier mal folgendes:
~~~css
div#hauptbox {
border:5px solid #FF0000;
height:452px;
margin:auto;
overflow:hidden;
width:800px;
}
div#textbox{
background-color:#00FF00;
float:left;
margin-bottom:-452px;
width:200px;
}
div#hauptbox img{
padding-left:200px;
}