Add background image to full page - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Image

Description

Add background image to full page

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <style>
body {<!--from   www . j  a v  a 2 s .  c o  m-->
   background-image:url('http://www.java2s.com/style/demo/Google-Chrome.png');
   background-attachment:fixed;
   background-position:top right;
}
</style> 
 </head> 
 <body>  
 </body>
</html>

Related Tutorials