I am looking for some info on CSS style used for many websites these days. Its a style where whole screen is occupied by one background and the websites content is posted on top of it under smaller dimensions.
Something like this website: http://www.obiweb.com.au/
How do we achieve something like this?
I am looking for some info on CSS style used for many websites these
Share
This is easily achieved by using the css background property on the body tag:
You can read up on this css property here: http://www.w3schools.com/css/css_background.asp
You would then have a div container inside your body tag that has a width and margin set to auto:
Hope this helps