I have a div with a background image - and I want it to stretch as the div itself stretches.
My CSS is like this:
.infobox-medium-text
{
width: 473px;
height: 208px;
background: url(../../images/infobox/infobox-medium.png) top no-repeat;
float:left;
}
where as a div receives the .infobox-medium-text
class.
Thanks.