0
Please tell me how to make nature related footer in homepage???
Please answer
5 Answers
+ 1
Denish Zalavadiya
Do you want to have a footer with a nature image in background?
0
Yes
0
Denish Zalavadiya
You can set the background (shorthand) property of the footer in css to set an image in background:
Ex.
footer{
background: center / 100% no-repeat url(..imgURL...);
}
center: for centering the image in background
100%: to make the img big or small so as to fit in the footer well
no-repeat: to not repeat the image in bg
Learn more at MDN web docs: https://developer.mozilla.org/en-US/docs/Web/CSS/background
0
Thank you bro
0
đ