How to fix background image with CSS?
<style>
html
{
height:100%;
width:100%;
background:url(http://www.southsoft.co.za/images/mysql.jpg) center center no-repeat;
background-position:center;
You can also give local file path
}
</style>