HTML CSS examples for CSS Property:overflow-y
Make page to scroll if page is too long
<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>