Skip to content

Instantly share code, notes, and snippets.

@vsim1964
Created September 18, 2021 11:54
Show Gist options
  • Save vsim1964/631e816c6ddbdf9bd6e461435a49b37a to your computer and use it in GitHub Desktop.
Save vsim1964/631e816c6ddbdf9bd6e461435a49b37a to your computer and use it in GitHub Desktop.
Липкое позионирование
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
height: 2000px;
background-color: rgb(152, 245, 143);
}
.header {
width: 700px;
height: 100px;
margin: 0 auto;
margin-top: 100px;
background-color: rgb(127, 127, 247);
position: sticky;
top: 20px;
}
main {
width: 700px;
height: 100px;
margin: 0 auto;
margin-top: 10px;
background-color: rgb(214, 107, 103);
}
footer {
width: 700px;
height: 100px;
margin: 0 auto;
margin-top: 10px;
background-color: rgb(189, 219, 107);
}
</style>
</head>
<body>
<header class="header">header</header>
<main>main content</main>
<footer>footer</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment