Lid |
|
Hallo,
Ik zit met het volgende probleem.
Ik heb een site waarvan de top altijd 125px hoog is. En daar onder nog een middenstuk en een footer.
Nu is mijn vraag hoe kan ik het zo maken dat als het middenstuk ( die op height:auto; staat) hoger word dat de footer kleiner word.
De footer moet echter wel altijd 106 px hoog blijven.
Ik heb het volgende aan CSS:
#container { width:100%; height:100%; margin:auto; background-color:#fff; }
#top { width:100%; height:125px; background-color:#ff7d01; text-align:center; }
#middle { clear:both; width:100%; height:auto; background:#000; }
#footer { width:100%; height:100%; background-color:#ff840d; text-align:center; }
#container { width:100%; height:100%; margin:auto; background-color:#fff; } #top { width:100%; height:125px; background-color:#ff7d01; text-align:center; } #middle { clear:both; width:100%; height:auto; background:#000; } #footer { width:100%; height:100%; background-color:#ff840d; text-align:center; }
|