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 :
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
Post a Comment