swarupa
0
Q:

cover background image css

body, html {
  height: 100%;
}

.bg {
  /* The image used */
  background-image: url("img_girl.jpg");

  /* Full height */
  height: 100%;

  /* Center and scale the image nicely */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
1
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;
}
0
/* One way */
background-size: cover;

/* Other option */
background-size: contain;
1
background-size: 100px 50px; /* 100px wide, 50px tall */
9

New to Communities?

Join the community