hide scrollbars in textarea

windows

Guest
Hello<br />
<br />
I hope someone can help me. I have inserted an textarea inside my HTML-page, but I don't need any scrollbars (no horizontal or vertical scrollbars). What code do I have to use???<br />
<br />
This is my code:<br />
<br />
<TEXTAREA NAME=FotoText ROWS=4 COLS=50 WRAP=PHYSICAL onFocus=this.blur() style="font-family: Comic Sans MS; color: #FFFF99; font-size: 12 pt; background-color: #003366; border-style: none;">Here you can find a long text,but no scrollbars needed.</TEXTAREA><br />
<br />
When I open this page, I always see a horizontal scrollbar in IE and it doesn't have to ;)<br />
<br />
Can someone help me out?<br />
<br />
TIA<!--content-->Try this:<br />
<TEXTAREA NAME=FotoText ROWS=4 COLS=50 WRAP=PHYSICAL onFocus=this.blur() style="overflow: hidden; font-family: Comic Sans MS; color: #FFFF99; font-size: 12 pt; background-color: #003366; border-style: none;">Here you can find a long text,but no scrollbars needed.</TEXTAREA><!--content-->thx!! it helped. thank you very much!:rocker:<!--content-->
 
Back
Top