Basically what I'm trying to do is 'hide' the resize handle on a Struts2 Textarea. But with my attempt at it I had and unexpected result. With my code I told it to overflow in the x & y direction with a scrollbar then I told the resize to be 'none'
I expected the resize handle to disappear which it did but the overflow is just wrapping down to the next line instead of scrolling.
<s:textarea name="newsString" cols="65" rows="17" style="overflow: scroll; resize: none;"></s:textarea>
So how should I properly go about hiding the resize handle and still having it scroll? If that is at all possible.