CSS body background position right bottom - HTML CSS CSS Property

HTML CSS examples for CSS Property:background-position

Description

CSS body background position right bottom

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  www  . j  av a  2s  .c  o  m-->
   background-image:url('https://www.java2s.com/style/demo/Google-Chrome.png');
   background-repeat:no-repeat;
   background-position:right bottom;
}

.space {
   margin:601px 0;
}
</style> 
 </head> 
 <body> 
  <div class="space"></div>  
 </body>
</html>

Related Tutorials