+ 1
How to move footer up close to form?
moving footer up close to form
3 Antworten
+ 7
You'd need css.
And it'd look something like this:
HTML code:
<footer id="footer" > _______________ </footer>
Css code:
#footer {
bottom: 50px;
}
And then you'd change 50 to the number that fits best, how ever many pixels you need the footer from the bottom.
+ 6
Post your code here or better share its sololearn code playground link ( making it public or not ) to get useful help ^^
Anyway, you can try to set top margin of your <footer> to zero... but it depends mainly of the page context, and already set css rules ;P
0
I have made a form. I want footer to be attached bottom of form with no white spacing