Are there alternative methods to word-wrap text within a div element? I am limited to using only CSS1 and some CSS2, so I cannot utilize word-wrap in CSS.
*Consider using javascript or CSS
Thank you!
.test_wordWrap {
position: absolute;
top: 45px;
left: 20px;
width: 250px;
white-space: pre-wrap;
}