Guest Posted August 4, 2007 Share Posted August 4, 2007 Is there a wat that i can make atext area so that it always has scrollbars on it? Link to comment https://forums.phpfreaks.com/topic/63273-solved-textarea-always-scroll/ Share on other sites More sharing options...
Hybride Posted August 4, 2007 Share Posted August 4, 2007 You can do it with CSS, where you can make something like this: textarea { width: x; height: x; overflow:scroll; } or with JS <script type="text/javascript"> function hideOverflow() { document.getElementById("div1").style.overflow="hidden"; } </script> There's more help with on http://www.w3schools.com/htmldom/prop_style_overflow.asp Link to comment https://forums.phpfreaks.com/topic/63273-solved-textarea-always-scroll/#findComment-315662 Share on other sites More sharing options...
Guest Posted August 4, 2007 Share Posted August 4, 2007 Thank You thats exactly what I needed. Link to comment https://forums.phpfreaks.com/topic/63273-solved-textarea-always-scroll/#findComment-315715 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.