html - Full screen background for start of page -


i'm wanting make website has full screen background start of webpage no background rest. there link of example below.

thank you.

example: http://band-theme.tumblr.com/

you can :

fiddle

html :

<div id="home">... home content ...</div> <div id="content">... website content ...</div> 

css :

html, body, #home {     width:100%;     height:100%;     margin:0; } #home {     background: url(http://lorempixel.com/output/nature-q-g-1278-873-9.jpg);     background-position:center center;     background-size:cover; } 

Comments

Popular posts from this blog

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

javascript - How to name a jQuery function to make a browser's back button work? -