Force to add vertical scroll bar on animation - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Scrollbar

Description

Force to add vertical scroll bar on animation

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">
body {<!--from  w ww.ja v a2 s. c  o m-->
   overflow:scroll;
}
</style> 
 </head> 
 <body>
   test  
 </body>
</html>

Related Tutorials