HTML CSS examples for CSS Property:background-position
CSS body background position right bottom
<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>