Make page to scroll if page is too long - HTML CSS CSS Property

HTML CSS examples for CSS Property:overflow-y

Description

Make page to scroll if page is too long

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
html {<!--from w  w  w. j  ava2 s.c  o  m-->
   overflow-y:scroll;
}
</style> 
 </head> 
 <body>  
 </body>
</html>

Related Tutorials