position-sticky.html (339B)
1 <!doctype html> 2 <meta charset="utf-8" /> 3 <meta name="viewport" content="width=device-width,initial-scale=1" /> 4 <style> 5 body { 6 margin: 0; 7 } 8 button { 9 width: 100%; 10 height: calc(100lvh - 100svh); 11 position: sticky; 12 background: yellow; 13 bottom: 0px; 14 } 15 </style> 16 <div style="height: 100svh"></div> 17 <button></button>