Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
3  
Can you use background positioning? That is a weird restriction. – Christian Varga Dec 3 '12 at 15:53
This has been asked: stackoverflow.com/questions/376253/… – Dave Dec 3 '12 at 15:54
No I can't use anything that includes the word position – Jeff Crackalack Dec 3 '12 at 15:54
1  
css properties left,right, margin, padding doesnt have word "position" in them..!!! – Parag Dec 3 '12 at 15:58

1 Answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.