Tue, 2014-05-06 11:12
This is the css styling i gave to my website , the problem is when i zoom out , i see the image (that is the background i have specified) but around it , i see a white background , now what can i do so that i see my background image even when i zoom out .
#home-section{ background: #000 url("../images/home-bg.jpg") no-repeat bottom center; background-size:cover; color: #FFF; min-height: 800px; vertical-align: middle; }
Tue, 2014-05-06 19:32
#1
try
try this:
#home-section{ background: #000 url("../images/home-bg.jpg") no-repeat bottom center; background-size:100% 100%; color: #FFF; min-height: 800px; vertical-align: middle; }
cheers Henk