Hallo Synaptic,
Vielen Dank für Deine Antwort!
Ich habe es jetzt mit drei DIVS gelöst: head(feste Größe), middle(dynamisch repeat-y) und bottom(auch feste Größe)
.head{
width: 180px;
height: 80px;
background-image: url(../images/cart-head.png);
background-repeat: no-repeat;
float:left;
}
.middle{
width: 180px;
height: 100%;
background-image: url(../images/cart-middle.png);
background-repeat:repeat-y;
margin:0 0;
float:left;
}
.middle-text{
width: 160px;
padding:0 10px 0 10px;
}
.bottom{
width: 180px;
height: 50px;
background-image: url(../images/cart-bottom.png);
background-repeat: no-repeat;
margin:0 0;
float:left;
}
Es sieht jetzt einigermaßen gut aus.
vielen Dank noch mal für deine Antwort!
Amro