Barra fissa pie di pagina





https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_fixed_footer




<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: red;
color: white;
text-align: center;
}
</style>
</head>
<body>

<h2>Fixed/Sticky Footer Example</h2>
<p>The footer is placed at the bottom of the page.</p>

<div class="footer">
<p>Footer</p>
</div>

</body>
</html>










( barrafissapiedipagina.html )- by Paolo Puglisi - Modifica del 17/12/2023