bluebell1
3
Q:

css background full width

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
2
body { 
  background: url(img/bg-image.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

New to Communities?

Join the community