Not many boxes actually need to expand Horizontally though ;).
Printable View
The way that I have learned, is either:
A) Don't put a height to it, then it expands to the text amount
OR
B)Use background-repeat: repeat-y; in the CSS
Example:
Not sure if this is totally right, but yeah :PCode:#boxmid {
background-image: url(boxmid.PNG);
background-repeat: repeat-y;
width: 123px;
padding-left: 3px;
}
You don't have to add the background-repeat: repeat-y;
it works without it.
it does for me