Jak zrobić stopkę w css która będzie zawsze u dołu strony www ?

Z Podręcznik Administratora by OPZ SGU
Przejdź do nawigacji Przejdź do wyszukiwania

<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>