HTML Scrollbar Hide/Show Example
Textarea Scrollbar Hiden Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="overflow:hidden;">
I like web tutorial because....
</textarea>
</body>
</html>
Textarea Auto Scrollbar Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="overflow:auto;">
I like web tutorial because....
</textarea>
</body>
</html>
Textarea Scrollbar Show Example
<html>
<head>
</head>
<body>
<textarea cols="50" rows="5" style="overflow:scroll;">
I like web tutorial because....
</textarea>
</body>
</html>