i have the textarea..
<textarea name='content' id='content' wrap='soft' style='background-image: url(\"frontinput.jpg\");color: #000000;font-size:12px;font-family:Arial;width:445px; height:77px;border:none; padding:5px;'></textarea>
when i display in the div.. the text doesn't fill up the div. the text goes 75% of the way and then line breaks.
here is the css for the div.
.message {
float:left;
width:98%;
background-color:#EFEFEF;
border: 1px solid black;
padding:4px;
overflow:auto;
margin-left:3px;
min-height:120px;
}
How do i get the text to go to the end of the div and then line break?