css how to fit background image code example

Example 1: css background image fit

body {
    background-image:    url(images/background.svg);
    background-size:     cover;                      /* <------ */
    background-repeat:   no-repeat;
    background-position: center center;              /* optional, center the image */
}

Example 2: background image size css

#example1 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: auto;
}

#example2 {
  background: url(mountain.jpg);
  background-repeat: no-repeat;
  background-size: 300px 100px;
}

Example 3: html background image fit to screen

body {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

Example 4: how to fit background image in html

/* To make an Image fit the Screen*/


METHOD - 1

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

METHOD - 2

IMP: To make sure that the image covers the whole screen, 
you must apply **height: 100%** to both <html> and <body>:

body, html {
  height: 100%;
}

Tags:

Css Example