how to make background image responsive in css code example

Example 1: css background image full screen responsive

html { 
  background: url(images/bg.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

Example 2: make a background image responsive css

html {
   min-height: 100%;
   background-image: url(image.jpg);
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center center;
}

Example 3: how to set background image in css responsive

body{
  background:url("images/xyz.jpg") no-repeat center;

Tags:

Css Example