The scroll attribute of the BODY element specifies whether or not to display the scrollbars.
<body scroll="no">
| Attribute | Value | Explanation |
|---|---|---|
| scroll=" " | yes | scrollbars are displayed (default) |
| no | scrollbars are not displayed | |
| auto | displays scrollbars as needed |
Extension attribute. (Non standard attribute)
Use CSS instead of this attribute. Please see the "Related Document" for details on CSS.
<html>
<head>
<title>TAG index</title>
</head>
<body scroll="no">
</body>
</html>