Source code
Revision control
Copy as Markdown
Other Tools
<!doctype html>
<html>
<meta
name="viewport"
content="width=device-width,initial-scale=1,interactive-widget=resizes-visual"
/>
<style>
html {
scrollbar-width: none;
}
body {
margin: 0px;
padding: 0px;
}
#fixed {
position: fixed;
width: 100%;
height: 100px;
bottom: 0px;
left: 0px;
background-color: blue;
}
</style>
<div id="fixed"></div>
<div style="height: 1000vh"></div>
</html>