0

How do set background image to fit screen size without css positioning? Im doing school work and I would like to set a background image but my professor said I cannot use positioning so is there another way around it?

Jae Song
  • 29
  • 1
  • 6

1 Answers1

2

Try this

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

body{

    min-height:100%;/*hack for some mobile browsers */
    min-width:100%;
}

reference link

Parag
  • 4,754
  • 9
  • 33
  • 50