HTML/CSS/Basic Attributes/scroll

Материал из Web эксперт
Перейти к: навигация, поиск

"scroll" controls whether to show the scroll bars

   <source lang="html4strict">
   

<HTML> <head> <Title>Example For scroll</Title> </head> <body id="myBody">

  <button onclick="myBody.scroll="yes"">Scroll bars do appear</button>
  <button onclick="myBody.scroll="no"">Scroll bars do not appear</button>
  <button onclick="myBody.scroll="auto"">Scroll = auto</button>
  


www.wbex.ru

www.wbex.ru </body> </HTML>


     </source>