Click to See Complete Forum and Search --> : Scrollable <div> horizontal issue


Dopple
03-20-2006, 07:34 AM
I have a scrollable div (click here to see it) (http://gramac2.farvista.net) but the problem is that the text runs off the side rather than splitting onto the next line. I don't know if this is relevant but I'm reading in the text from a mySQL database using PHP.
Below is my css for the DIV.
#ScrollDiv {
width:250px;
height:220px;
overflow:auto;
background-color: #666;
border-color: #eee;
border: 1px solid;
padding:5px;
}
This is inside bluerobots 3 column layout "content" div. I am using IE6 to view so I'm not sure of some of yoyu may actually be able to see it as it should be. Not sure of the ins and outs of the overflow:auto in different browsers. Can anyone be of assistance?

Dopple
03-20-2006, 09:14 AM
I've resolved it. the test data was just one long endless line of digits with no spaces in it. Broke them up and it's ok now.