Jak zrobić stopkę w css która będzie zawsze u dołu strony www ?: Różnice pomiędzy wersjami

Z Podręcznik Administratora by OPZ SGU
Przejdź do nawigacji Przejdź do wyszukiwania
(Utworzył nową stronę „<source lang="html4strict"> <html> <head> <link rel="stylesheet" href="layout.css" ... /> </head> <body> <div class="wrapper"> <…”)
 
Linia 27: Linia 27:
height: auto !important;
height: auto !important;
height: 100%;
height: 100%;
margin: 0 auto -4em;
margin: 0 auto -100px;
}
}
.footer, .push {
.footer, .push {
height: 4em;
height: 100px;
margin-top:120px;
}
}
</source>
</source>

Wersja z 05:19, 3 mar 2010

<source lang="html4strict"> <html>

   <head>
       <link rel="stylesheet" href="layout.css" ... />
   </head>
   <body>

Your website content here.

   </body>

</html> </source>

<source lang="css">

  • {

margin: 0; } html, body { height: 100%; } .wrapper { min-height: 100%; height: auto !important; height: 100%; margin: 0 auto -100px; } .footer, .push { height: 100px; margin-top:120px; } </source>