зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
384 B
HTML
26 строки
384 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<meta name="viewport" content="width=device-width">
|
|
<style>
|
|
html {
|
|
scrollbar-width: none;
|
|
}
|
|
#scrolled {
|
|
height: 2000px;
|
|
width: 100%;
|
|
}
|
|
#fixed {
|
|
width: 100%;
|
|
height: 200px;
|
|
position: fixed;
|
|
bottom: 0;
|
|
background: red;
|
|
margin-bottom: 50px;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div id="scrolled"></div>
|
|
<div id="fixed"></div>
|
|
</body>
|
|
</html>
|