Link to home
Start Free TrialLog in
Avatar of Ernesto
ErnestoFlag for Mexico

asked on

footer strip

hi all

i got this for my header

.top {
background: white;
width: auto;
height: 92px;
}

Open in new window


how to do the same for a strip at the foot of page, the same boot on foot
regards!
Avatar of HainKurt
HainKurt
Flag of Canada image

add another css

.top {
  background: white; 
  width: auto;
  height: 92px;
}
.bottom {
  background: white; 
  width: auto;
  height: 92px;
}

Open in new window


then use

<div class="bottom">....my footer...</div>

Open in new window


or just use same class as top

<div class="top">....my footer...</div>

Open in new window

Avatar of Ernesto

ASKER

thnkx
i have it like that but the
.bottom {
  background: white;
  width: auto;
  height: 92px;
}
do not reach the bottom pege its  after the last div in main, its any way to reach dinamickly at the bottom of the screen?
regards
do you want something like this?

https://codepen.io/cbracco/pen/zekgx

if yes, use that one... if not, we need link to the page or jsfiddle.net demo
SOLUTION
Avatar of HainKurt
HainKurt
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Ernesto

ASKER

Oh men!! son nice advices!
let me check and inform you!
regards you guys!
Avatar of Ernesto

ASKER

Oh men!!!
tnkx!